FunctionTargetSystemDetails¶
-
class
oci.vault.models.
FunctionTargetSystemDetails
(**kwargs)¶ Bases:
oci.vault.models.target_system_details.TargetSystemDetails
Details of the OCI function that vault secret connects to.
Attributes
TARGET_SYSTEM_TYPE_ADB
str(object=’’) -> str TARGET_SYSTEM_TYPE_FUNCTION
str(object=’’) -> str function_id
[Required] Gets the function_id of this FunctionTargetSystemDetails. target_system_type
[Required] Gets the target_system_type of this TargetSystemDetails. Methods
__init__
(**kwargs)Initializes a new FunctionTargetSystemDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
TARGET_SYSTEM_TYPE_ADB
= 'ADB'¶
-
TARGET_SYSTEM_TYPE_FUNCTION
= 'FUNCTION'¶
-
__init__
(**kwargs)¶ Initializes a new FunctionTargetSystemDetails object with values from keyword arguments. The default value of the
target_system_type
attribute of this class isFUNCTION
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - target_system_type (str) – The value to assign to the target_system_type property of this FunctionTargetSystemDetails. Allowed values for this property are: “ADB”, “FUNCTION”
- function_id (str) – The value to assign to the function_id property of this FunctionTargetSystemDetails.
-
function_id
¶ [Required] Gets the function_id of this FunctionTargetSystemDetails. The unique identifier (OCID) of the OCI Functions that vault secret connects to.
Returns: The function_id of this FunctionTargetSystemDetails. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
target_system_type
¶ [Required] Gets the target_system_type of this TargetSystemDetails. Unique identifier of the target system that Vault Secret connects to.
Allowed values for this property are: “ADB”, “FUNCTION”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The target_system_type of this TargetSystemDetails. Return type: str
-