UpdateOciCliDumpTransferDetails¶
- 
class 
oci.database_migration.models.UpdateOciCliDumpTransferDetails(**kwargs)¶ Bases:
oci.database_migration.models.update_host_dump_transfer_details.UpdateHostDumpTransferDetailsOptional dump transfer details for OCI-CLI-based dump transfer in source or target host.
Attributes
KIND_CURLstr(object=’’) -> str KIND_OCI_CLIstr(object=’’) -> str kind[Required] Gets the kind of this UpdateHostDumpTransferDetails. oci_home[Required] Gets the oci_home of this UpdateOciCliDumpTransferDetails. wallet_locationGets the wallet_location of this UpdateHostDumpTransferDetails. Methods
__init__(**kwargs)Initializes a new UpdateOciCliDumpTransferDetails 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. - 
KIND_CURL= 'CURL'¶ 
- 
KIND_OCI_CLI= 'OCI_CLI'¶ 
- 
__init__(**kwargs)¶ Initializes a new UpdateOciCliDumpTransferDetails object with values from keyword arguments. The default value of the
kindattribute of this class isOCI_CLIand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - wallet_location (str) – The value to assign to the wallet_location property of this UpdateOciCliDumpTransferDetails.
 - kind (str) – The value to assign to the kind property of this UpdateOciCliDumpTransferDetails. Allowed values for this property are: “CURL”, “OCI_CLI”
 - oci_home (str) – The value to assign to the oci_home property of this UpdateOciCliDumpTransferDetails.
 
- 
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.
- 
kind¶ [Required] Gets the kind of this UpdateHostDumpTransferDetails. Type of dump transfer to use during migration in source or target host. Default kind is CURL.
Allowed values for this property are: “CURL”, “OCI_CLI”
Returns: The kind of this UpdateHostDumpTransferDetails. Return type: str 
- 
oci_home¶ [Required] Gets the oci_home of this UpdateOciCliDumpTransferDetails. Path to the OCI CLI installation in the node.
Returns: The oci_home of this UpdateOciCliDumpTransferDetails. Return type: str 
- 
wallet_location¶ Gets the wallet_location of this UpdateHostDumpTransferDetails. Directory path to OCI SSL wallet location on Db server node.
Returns: The wallet_location of this UpdateHostDumpTransferDetails. Return type: str 
-