CreateBackupDestinationDetails¶
- 
class oci.database.models.CreateBackupDestinationDetails(**kwargs)¶
- Bases: - object- Details for creating a backup destination. - Attributes - TYPE_NFS- A constant which can be used with the type property of a CreateBackupDestinationDetails. - TYPE_RECOVERY_APPLIANCE- A constant which can be used with the type property of a CreateBackupDestinationDetails. - compartment_id- [Required] Gets the compartment_id of this CreateBackupDestinationDetails. - defined_tags- Gets the defined_tags of this CreateBackupDestinationDetails. - display_name- [Required] Gets the display_name of this CreateBackupDestinationDetails. - freeform_tags- Gets the freeform_tags of this CreateBackupDestinationDetails. - type- [Required] Gets the type of this CreateBackupDestinationDetails. - Methods - __init__(**kwargs)- Initializes a new CreateBackupDestinationDetails 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. - 
TYPE_NFS= 'NFS'¶
- A constant which can be used with the type property of a CreateBackupDestinationDetails. This constant has a value of “NFS” 
 - 
TYPE_RECOVERY_APPLIANCE= 'RECOVERY_APPLIANCE'¶
- A constant which can be used with the type property of a CreateBackupDestinationDetails. This constant has a value of “RECOVERY_APPLIANCE” 
 - 
__init__(**kwargs)¶
- Initializes a new CreateBackupDestinationDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - display_name (str) – The value to assign to the display_name property of this CreateBackupDestinationDetails.
- compartment_id (str) – The value to assign to the compartment_id property of this CreateBackupDestinationDetails.
- type (str) – The value to assign to the type property of this CreateBackupDestinationDetails. Allowed values for this property are: “NFS”, “RECOVERY_APPLIANCE”
- freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreateBackupDestinationDetails.
- defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreateBackupDestinationDetails.
 
 - 
compartment_id¶
- [Required] Gets the compartment_id of this CreateBackupDestinationDetails. The OCID of the compartment. - Returns: - The compartment_id of this CreateBackupDestinationDetails. - Return type: - str 
 - Gets the defined_tags of this CreateBackupDestinationDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. - Returns: - The defined_tags of this CreateBackupDestinationDetails. - Return type: - dict(str, dict(str, object)) 
 - 
display_name¶
- [Required] Gets the display_name of this CreateBackupDestinationDetails. The user-provided name of the backup destination. - Returns: - The display_name of this CreateBackupDestinationDetails. - Return type: - str 
 - Gets the freeform_tags of this CreateBackupDestinationDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. - Example: {“Department”: “Finance”} - Returns: - The freeform_tags of this CreateBackupDestinationDetails. - Return type: - dict(str, 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. 
 - 
type¶
- [Required] Gets the type of this CreateBackupDestinationDetails. Type of the backup destination. - Allowed values for this property are: “NFS”, “RECOVERY_APPLIANCE” - Returns: - The type of this CreateBackupDestinationDetails. - Return type: - str 
 
-