ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 from .launch_db_system_base import LaunchDbSystemBase from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class LaunchDbSystemFromDbSystemDetails(LaunchDbSystemBase): """ Used for creating a new database system by cloning an existing DB system. """ #: A constant which can be used with the license_model property of a LaunchDbSystemFromDbSystemDetails. #: This constant has a value of "LICENSE_INCLUDED" LICENSE_MODEL_LICENSE_INCLUDED = "LICENSE_INCLUDED" #: A constant which can be used with the license_model property of a LaunchDbSystemFromDbSystemDetails. #: This constant has a value of "BRING_YOUR_OWN_LICENSE" LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = "BRING_YOUR_OWN_LICENSE" def __init__(self, **kwargs): """ Initializes a new LaunchDbSystemFromDbSystemDetails object with values from keyword arguments. The default value of the :py:attr:`~oci.database.models.LaunchDbSystemFromDbSystemDetails.source` attribute of this class is ``DB_SYSTEM`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param compartment_id: The value to assign to the compartment_id property of this LaunchDbSystemFromDbSystemDetails. :type compartment_id: str :param fault_domains: The value to assign to the fault_domains property of this LaunchDbSystemFromDbSystemDetails. :type fault_domains: list[str] :param display_name: The value to assign to the display_name property of this LaunchDbSystemFromDbSystemDetails. :type display_name: str :param availability_domain: The value to assign to the availability_domain property of this LaunchDbSystemFromDbSystemDetails. :type availability_domain: str :param subnet_id: The value to assign to the subnet_id property of this LaunchDbSystemFromDbSystemDetails. :type subnet_id: str :param backup_subnet_id: The value to assign to the backup_subnet_id property of this LaunchDbSystemFromDbSystemDetails. :type backup_subnet_id: str :param nsg_ids: The value to assign to the nsg_ids property of this LaunchDbSystemFromDbSystemDetails. :type nsg_ids: list[str] :param backup_network_nsg_ids: The value to assign to the backup_network_nsg_ids property of this LaunchDbSystemFromDbSystemDetails. :type backup_network_nsg_ids: list[str] :param shape: The value to assign to the shape property of this LaunchDbSystemFromDbSystemDetails. :type shape: str :param time_zone: The value to assign to the time_zone property of this LaunchDbSystemFromDbSystemDetails. :type time_zone: str :param db_system_options: The value to assign to the db_system_options property of this LaunchDbSystemFromDbSystemDetails. :type db_system_options: oci.database.models.DbSystemOptions :param storage_volume_performance_mode: The value to assign to the storage_volume_performance_mode property of this LaunchDbSystemFromDbSystemDetails. Allowed values for this property are: "BALANCED", "HIGH_PERFORMANCE" :type storage_volume_performance_mode: str :param sparse_diskgroup: The value to assign to the sparse_diskgroup property of this LaunchDbSystemFromDbSystemDetails. :type sparse_diskgroup: bool :param ssh_public_keys: The value to assign to the ssh_public_keys property of this LaunchDbSystemFromDbSystemDetails. :type ssh_public_keys: list[str] :param hostname: The value to assign to the hostname property of this LaunchDbSystemFromDbSystemDetails. :type hostname: str :param domain: The value to assign to the domain property of this LaunchDbSystemFromDbSystemDetails. :type domain: str :param cpu_core_count: The value to assign to the cpu_core_count property of this LaunchDbSystemFromDbSystemDetails. :type cpu_core_count: int :param cluster_name: The value to assign to the cluster_name property of this LaunchDbSystemFromDbSystemDetails. :type cluster_name: str :param data_storage_percentage: The value to assign to the data_storage_percentage property of this LaunchDbSystemFromDbSystemDetails. :type data_storage_percentage: int :param initial_data_storage_size_in_gb: The value to assign to the initial_data_storage_size_in_gb property of this LaunchDbSystemFromDbSystemDetails. :type initial_data_storage_size_in_gb: int :param kms_key_id: The value to assign to the kms_key_id property of this LaunchDbSystemFromDbSystemDetails. :type kms_key_id: str :param kms_key_version_id: The value to assign to the kms_key_version_id property of this LaunchDbSystemFromDbSystemDetails. :type kms_key_version_id: str :param node_count: The value to assign to the node_count property of this LaunchDbSystemFromDbSystemDetails. :type node_count: int :param freeform_tags: The value to assign to the freeform_tags property of this LaunchDbSystemFromDbSystemDetails. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this LaunchDbSystemFromDbSystemDetails. :type defined_tags: dict(str, dict(str, object)) :param source: The value to assign to the source property of this LaunchDbSystemFromDbSystemDetails. Allowed values for this property are: "NONE", "DB_BACKUP", "DATABASE", "DB_SYSTEM" :type source: str :param private_ip: The value to assign to the private_ip property of this LaunchDbSystemFromDbSystemDetails. :type private_ip: str :param data_collection_options: The value to assign to the data_collection_options property of this LaunchDbSystemFromDbSystemDetails. :type data_collection_options: oci.database.models.DataCollectionOptions :param source_db_system_id: The value to assign to the source_db_system_id property of this LaunchDbSystemFromDbSystemDetails. :type source_db_system_id: str :param db_home: The value to assign to the db_home property of this LaunchDbSystemFromDbSystemDetails. :type db_home: oci.database.models.CreateDbHomeFromDbSystemDetails :param license_model: The value to assign to the license_model property of this LaunchDbSystemFromDbSystemDetails. Allowed values for this property are: "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE" :type license_model: str """ self.swagger_types = { 'compartment_id': 'str', 'fault_domains': 'list[str]', 'display_name': 'str', 'availability_domain': 'str', 'subnet_id': 'str', 'backup_subnet_id': 'str', 'nsg_ids': 'list[str]', 'backup_network_nsg_ids': 'list[str]', 'shape': 'str', 'time_zone': 'str', 'db_system_options': 'DbSystemOptions', 'storage_volume_performance_mode': 'str', 'sparse_diskgroup': 'bool', 'ssh_public_keys': 'list[str]', 'hostname': 'str', 'domain': 'str', 'cpu_core_count': 'int', 'cluster_name': 'str', 'data_storage_percentage': 'int', 'initial_data_storage_size_in_gb': 'int', 'kms_key_id': 'str', 'kms_key_version_id': 'str', 'node_count': 'int', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'source': 'str', 'private_ip': 'str', 'data_collection_options': 'DataCollectionOptions', 'source_db_system_id': 'str', 'db_home': 'CreateDbHomeFromDbSystemDetails', 'license_model': 'str' } self.attribute_map = { 'compartment_id': 'compartmentId', 'fault_domains': 'faultDomains', 'display_name': 'displayName', 'availability_domain': 'availabilityDomain', 'subnet_id': 'subnetId', 'backup_subnet_id': 'backupSubnetId', 'nsg_ids': 'nsgIds', 'backup_network_nsg_ids': 'backupNetworkNsgIds', 'shape': 'shape', 'time_zone': 'timeZone', 'db_system_options': 'dbSystemOptions', 'storage_volume_performance_mode': 'storageVolumePerformanceMode', 'sparse_diskgroup': 'sparseDiskgroup', 'ssh_public_keys': 'sshPublicKeys', 'hostname': 'hostname', 'domain': 'domain', 'cpu_core_count': 'cpuCoreCount', 'cluster_name': 'clusterName', 'data_storage_percentage': 'dataStoragePercentage', 'initial_data_storage_size_in_gb': 'initialDataStorageSizeInGB', 'kms_key_id': 'kmsKeyId', 'kms_key_version_id': 'kmsKeyVersionId', 'node_count': 'nodeCount', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'source': 'source', 'private_ip': 'privateIp', 'data_collection_options': 'dataCollectionOptions', 'source_db_system_id': 'sourceDbSystemId', 'db_home': 'dbHome', 'license_model': 'licenseModel' } self._compartment_id = None self._fault_domains = None self._display_name = None self._availability_domain = None self._subnet_id = None self._backup_subnet_id = None self._nsg_ids = None self._backup_network_nsg_ids = None self._shape = None self._time_zone = None self._db_system_options = None self._storage_volume_performance_mode = None self._sparse_diskgroup = None self._ssh_public_keys = None self._hostname = None self._domain = None self._cpu_core_count = None self._cluster_name = None self._data_storage_percentage = None self._initial_data_storage_size_in_gb = None self._kms_key_id = None self._kms_key_version_id = None self._node_count = None self._freeform_tags = None self._defined_tags = None self._source = None self._private_ip = None self._data_collection_options = None self._source_db_system_id = None self._db_home = None self._license_model = None self._source = 'DB_SYSTEM' @property def source_db_system_id(self): """ **[Required]** Gets the source_db_system_id of this LaunchDbSystemFromDbSystemDetails. The `OCID`__ of the DB system. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :return: The source_db_system_id of this LaunchDbSystemFromDbSystemDetails. :rtype: str """ return self._source_db_system_id @source_db_system_id.setter def source_db_system_id(self, source_db_system_id): """ Sets the source_db_system_id of this LaunchDbSystemFromDbSystemDetails. The `OCID`__ of the DB system. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :param source_db_system_id: The source_db_system_id of this LaunchDbSystemFromDbSystemDetails. :type: str """ self._source_db_system_id = source_db_system_id @property def db_home(self): """ **[Required]** Gets the db_home of this LaunchDbSystemFromDbSystemDetails. :return: The db_home of this LaunchDbSystemFromDbSystemDetails. :rtype: oci.database.models.CreateDbHomeFromDbSystemDetails """ return self._db_home @db_home.setter def db_home(self, db_home): """ Sets the db_home of this LaunchDbSystemFromDbSystemDetails. :param db_home: The db_home of this LaunchDbSystemFromDbSystemDetails. :type: oci.database.models.CreateDbHomeFromDbSystemDetails """ self._db_home = db_home @property def license_model(self): """ Gets the license_model of this LaunchDbSystemFromDbSystemDetails. The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED. Allowed values for this property are: "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE" :return: The license_model of this LaunchDbSystemFromDbSystemDetails. :rtype: str """ return self._license_model @license_model.setter def license_model(self, license_model): """ Sets the license_model of this LaunchDbSystemFromDbSystemDetails. The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED. :param license_model: The license_model of this LaunchDbSystemFromDbSystemDetails. :type: str """ allowed_values = ["LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE"] if not value_allowed_none_or_none_sentinel(license_model, allowed_values): raise ValueError( f"Invalid value for `license_model`, must be None or one of {allowed_values}" ) self._license_model = license_model def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
cải xoăn