File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/database/models/update_vm_cluster_details.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, 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 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 UpdateVmClusterDetails(object): """ Details for updating the VM cluster. Applies to Exadata Cloud@Customer instances only. For details on updating a cloud VM cluster in an Exadata Cloud Service instance, see :func:`update_cloud_vm_cluster_details` """ #: A constant which can be used with the license_model property of a UpdateVmClusterDetails. #: 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 UpdateVmClusterDetails. #: This constant has a value of "BRING_YOUR_OWN_LICENSE" LICENSE_MODEL_BRING_YOUR_OWN_LICENSE = "BRING_YOUR_OWN_LICENSE" #: A constant which can be used with the vm_backup_storage_type property of a UpdateVmClusterDetails. #: This constant has a value of "LOCAL" VM_BACKUP_STORAGE_TYPE_LOCAL = "LOCAL" #: A constant which can be used with the vm_backup_storage_type property of a UpdateVmClusterDetails. #: This constant has a value of "EXASCALE" VM_BACKUP_STORAGE_TYPE_EXASCALE = "EXASCALE" def __init__(self, **kwargs): """ Initializes a new UpdateVmClusterDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param cpu_core_count: The value to assign to the cpu_core_count property of this UpdateVmClusterDetails. :type cpu_core_count: int :param ocpu_count: The value to assign to the ocpu_count property of this UpdateVmClusterDetails. :type ocpu_count: float :param memory_size_in_gbs: The value to assign to the memory_size_in_gbs property of this UpdateVmClusterDetails. :type memory_size_in_gbs: int :param db_node_storage_size_in_gbs: The value to assign to the db_node_storage_size_in_gbs property of this UpdateVmClusterDetails. :type db_node_storage_size_in_gbs: int :param data_storage_size_in_tbs: The value to assign to the data_storage_size_in_tbs property of this UpdateVmClusterDetails. :type data_storage_size_in_tbs: float :param data_storage_size_in_gbs: The value to assign to the data_storage_size_in_gbs property of this UpdateVmClusterDetails. :type data_storage_size_in_gbs: float :param license_model: The value to assign to the license_model property of this UpdateVmClusterDetails. Allowed values for this property are: "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE" :type license_model: str :param ssh_public_keys: The value to assign to the ssh_public_keys property of this UpdateVmClusterDetails. :type ssh_public_keys: list[str] :param version: The value to assign to the version property of this UpdateVmClusterDetails. :type version: oci.database.models.PatchDetails :param update_details: The value to assign to the update_details property of this UpdateVmClusterDetails. :type update_details: oci.database.models.VmClusterUpdateDetails :param freeform_tags: The value to assign to the freeform_tags property of this UpdateVmClusterDetails. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this UpdateVmClusterDetails. :type defined_tags: dict(str, dict(str, object)) :param data_collection_options: The value to assign to the data_collection_options property of this UpdateVmClusterDetails. :type data_collection_options: oci.database.models.DataCollectionOptions :param file_system_configuration_details: The value to assign to the file_system_configuration_details property of this UpdateVmClusterDetails. :type file_system_configuration_details: list[oci.database.models.FileSystemConfigurationDetail] :param cloud_automation_update_details: The value to assign to the cloud_automation_update_details property of this UpdateVmClusterDetails. :type cloud_automation_update_details: oci.database.models.CloudAutomationUpdateDetails :param vm_backup_storage_type: The value to assign to the vm_backup_storage_type property of this UpdateVmClusterDetails. Allowed values for this property are: "LOCAL", "EXASCALE" :type vm_backup_storage_type: str """ self.swagger_types = { 'cpu_core_count': 'int', 'ocpu_count': 'float', 'memory_size_in_gbs': 'int', 'db_node_storage_size_in_gbs': 'int', 'data_storage_size_in_tbs': 'float', 'data_storage_size_in_gbs': 'float', 'license_model': 'str', 'ssh_public_keys': 'list[str]', 'version': 'PatchDetails', 'update_details': 'VmClusterUpdateDetails', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'data_collection_options': 'DataCollectionOptions', 'file_system_configuration_details': 'list[FileSystemConfigurationDetail]', 'cloud_automation_update_details': 'CloudAutomationUpdateDetails', 'vm_backup_storage_type': 'str' } self.attribute_map = { 'cpu_core_count': 'cpuCoreCount', 'ocpu_count': 'ocpuCount', 'memory_size_in_gbs': 'memorySizeInGBs', 'db_node_storage_size_in_gbs': 'dbNodeStorageSizeInGBs', 'data_storage_size_in_tbs': 'dataStorageSizeInTBs', 'data_storage_size_in_gbs': 'dataStorageSizeInGBs', 'license_model': 'licenseModel', 'ssh_public_keys': 'sshPublicKeys', 'version': 'version', 'update_details': 'updateDetails', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'data_collection_options': 'dataCollectionOptions', 'file_system_configuration_details': 'fileSystemConfigurationDetails', 'cloud_automation_update_details': 'cloudAutomationUpdateDetails', 'vm_backup_storage_type': 'vmBackupStorageType' } self._cpu_core_count = None self._ocpu_count = None self._memory_size_in_gbs = None self._db_node_storage_size_in_gbs = None self._data_storage_size_in_tbs = None self._data_storage_size_in_gbs = None self._license_model = None self._ssh_public_keys = None self._version = None self._update_details = None self._freeform_tags = None self._defined_tags = None self._data_collection_options = None self._file_system_configuration_details = None self._cloud_automation_update_details = None self._vm_backup_storage_type = None @property def cpu_core_count(self): """ Gets the cpu_core_count of this UpdateVmClusterDetails. The number of CPU cores to enable for the VM cluster. :return: The cpu_core_count of this UpdateVmClusterDetails. :rtype: int """ return self._cpu_core_count @cpu_core_count.setter def cpu_core_count(self, cpu_core_count): """ Sets the cpu_core_count of this UpdateVmClusterDetails. The number of CPU cores to enable for the VM cluster. :param cpu_core_count: The cpu_core_count of this UpdateVmClusterDetails. :type: int """ self._cpu_core_count = cpu_core_count @property def ocpu_count(self): """ Gets the ocpu_count of this UpdateVmClusterDetails. The number of OCPU cores to enable for the VM cluster. Only 1 decimal place is allowed for the fractional part. :return: The ocpu_count of this UpdateVmClusterDetails. :rtype: float """ return self._ocpu_count @ocpu_count.setter def ocpu_count(self, ocpu_count): """ Sets the ocpu_count of this UpdateVmClusterDetails. The number of OCPU cores to enable for the VM cluster. Only 1 decimal place is allowed for the fractional part. :param ocpu_count: The ocpu_count of this UpdateVmClusterDetails. :type: float """ self._ocpu_count = ocpu_count @property def memory_size_in_gbs(self): """ Gets the memory_size_in_gbs of this UpdateVmClusterDetails. The memory to be allocated in GBs. :return: The memory_size_in_gbs of this UpdateVmClusterDetails. :rtype: int """ return self._memory_size_in_gbs @memory_size_in_gbs.setter def memory_size_in_gbs(self, memory_size_in_gbs): """ Sets the memory_size_in_gbs of this UpdateVmClusterDetails. The memory to be allocated in GBs. :param memory_size_in_gbs: The memory_size_in_gbs of this UpdateVmClusterDetails. :type: int """ self._memory_size_in_gbs = memory_size_in_gbs @property def db_node_storage_size_in_gbs(self): """ Gets the db_node_storage_size_in_gbs of this UpdateVmClusterDetails. The local node storage to be allocated in GBs. :return: The db_node_storage_size_in_gbs of this UpdateVmClusterDetails. :rtype: int """ return self._db_node_storage_size_in_gbs @db_node_storage_size_in_gbs.setter def db_node_storage_size_in_gbs(self, db_node_storage_size_in_gbs): """ Sets the db_node_storage_size_in_gbs of this UpdateVmClusterDetails. The local node storage to be allocated in GBs. :param db_node_storage_size_in_gbs: The db_node_storage_size_in_gbs of this UpdateVmClusterDetails. :type: int """ self._db_node_storage_size_in_gbs = db_node_storage_size_in_gbs @property def data_storage_size_in_tbs(self): """ Gets the data_storage_size_in_tbs of this UpdateVmClusterDetails. The data disk group size to be allocated in TBs. :return: The data_storage_size_in_tbs of this UpdateVmClusterDetails. :rtype: float """ return self._data_storage_size_in_tbs @data_storage_size_in_tbs.setter def data_storage_size_in_tbs(self, data_storage_size_in_tbs): """ Sets the data_storage_size_in_tbs of this UpdateVmClusterDetails. The data disk group size to be allocated in TBs. :param data_storage_size_in_tbs: The data_storage_size_in_tbs of this UpdateVmClusterDetails. :type: float """ self._data_storage_size_in_tbs = data_storage_size_in_tbs @property def data_storage_size_in_gbs(self): """ Gets the data_storage_size_in_gbs of this UpdateVmClusterDetails. The data disk group size to be allocated in GBs. :return: The data_storage_size_in_gbs of this UpdateVmClusterDetails. :rtype: float """ return self._data_storage_size_in_gbs @data_storage_size_in_gbs.setter def data_storage_size_in_gbs(self, data_storage_size_in_gbs): """ Sets the data_storage_size_in_gbs of this UpdateVmClusterDetails. The data disk group size to be allocated in GBs. :param data_storage_size_in_gbs: The data_storage_size_in_gbs of this UpdateVmClusterDetails. :type: float """ self._data_storage_size_in_gbs = data_storage_size_in_gbs @property def license_model(self): """ Gets the license_model of this UpdateVmClusterDetails. The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE. Allowed values for this property are: "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE" :return: The license_model of this UpdateVmClusterDetails. :rtype: str """ return self._license_model @license_model.setter def license_model(self, license_model): """ Sets the license_model of this UpdateVmClusterDetails. The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE. :param license_model: The license_model of this UpdateVmClusterDetails. :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 @property def ssh_public_keys(self): """ Gets the ssh_public_keys of this UpdateVmClusterDetails. The public key portion of one or more key pairs used for SSH access to the VM cluster. :return: The ssh_public_keys of this UpdateVmClusterDetails. :rtype: list[str] """ return self._ssh_public_keys @ssh_public_keys.setter def ssh_public_keys(self, ssh_public_keys): """ Sets the ssh_public_keys of this UpdateVmClusterDetails. The public key portion of one or more key pairs used for SSH access to the VM cluster. :param ssh_public_keys: The ssh_public_keys of this UpdateVmClusterDetails. :type: list[str] """ self._ssh_public_keys = ssh_public_keys @property def version(self): """ Gets the version of this UpdateVmClusterDetails. :return: The version of this UpdateVmClusterDetails. :rtype: oci.database.models.PatchDetails """ return self._version @version.setter def version(self, version): """ Sets the version of this UpdateVmClusterDetails. :param version: The version of this UpdateVmClusterDetails. :type: oci.database.models.PatchDetails """ self._version = version @property def update_details(self): """ Gets the update_details of this UpdateVmClusterDetails. :return: The update_details of this UpdateVmClusterDetails. :rtype: oci.database.models.VmClusterUpdateDetails """ return self._update_details @update_details.setter def update_details(self, update_details): """ Sets the update_details of this UpdateVmClusterDetails. :param update_details: The update_details of this UpdateVmClusterDetails. :type: oci.database.models.VmClusterUpdateDetails """ self._update_details = update_details @property def freeform_tags(self): """ Gets the freeform_tags of this UpdateVmClusterDetails. 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\"}` __ https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm :return: The freeform_tags of this UpdateVmClusterDetails. :rtype: dict(str, str) """ return self._freeform_tags @freeform_tags.setter def freeform_tags(self, freeform_tags): """ Sets the freeform_tags of this UpdateVmClusterDetails. 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\"}` __ https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm :param freeform_tags: The freeform_tags of this UpdateVmClusterDetails. :type: dict(str, str) """ self._freeform_tags = freeform_tags @property def defined_tags(self): """ Gets the defined_tags of this UpdateVmClusterDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see `Resource Tags`__. __ https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm :return: The defined_tags of this UpdateVmClusterDetails. :rtype: dict(str, dict(str, object)) """ return self._defined_tags @defined_tags.setter def defined_tags(self, defined_tags): """ Sets the defined_tags of this UpdateVmClusterDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see `Resource Tags`__. __ https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm :param defined_tags: The defined_tags of this UpdateVmClusterDetails. :type: dict(str, dict(str, object)) """ self._defined_tags = defined_tags @property def data_collection_options(self): """ Gets the data_collection_options of this UpdateVmClusterDetails. :return: The data_collection_options of this UpdateVmClusterDetails. :rtype: oci.database.models.DataCollectionOptions """ return self._data_collection_options @data_collection_options.setter def data_collection_options(self, data_collection_options): """ Sets the data_collection_options of this UpdateVmClusterDetails. :param data_collection_options: The data_collection_options of this UpdateVmClusterDetails. :type: oci.database.models.DataCollectionOptions """ self._data_collection_options = data_collection_options @property def file_system_configuration_details(self): """ Gets the file_system_configuration_details of this UpdateVmClusterDetails. Details of the file system configuration of the VM cluster. :return: The file_system_configuration_details of this UpdateVmClusterDetails. :rtype: list[oci.database.models.FileSystemConfigurationDetail] """ return self._file_system_configuration_details @file_system_configuration_details.setter def file_system_configuration_details(self, file_system_configuration_details): """ Sets the file_system_configuration_details of this UpdateVmClusterDetails. Details of the file system configuration of the VM cluster. :param file_system_configuration_details: The file_system_configuration_details of this UpdateVmClusterDetails. :type: list[oci.database.models.FileSystemConfigurationDetail] """ self._file_system_configuration_details = file_system_configuration_details @property def cloud_automation_update_details(self): """ Gets the cloud_automation_update_details of this UpdateVmClusterDetails. :return: The cloud_automation_update_details of this UpdateVmClusterDetails. :rtype: oci.database.models.CloudAutomationUpdateDetails """ return self._cloud_automation_update_details @cloud_automation_update_details.setter def cloud_automation_update_details(self, cloud_automation_update_details): """ Sets the cloud_automation_update_details of this UpdateVmClusterDetails. :param cloud_automation_update_details: The cloud_automation_update_details of this UpdateVmClusterDetails. :type: oci.database.models.CloudAutomationUpdateDetails """ self._cloud_automation_update_details = cloud_automation_update_details @property def vm_backup_storage_type(self): """ Gets the vm_backup_storage_type of this UpdateVmClusterDetails. Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. Storage Type can only be changed once from LOCAL to EXASCALE. EXASCALE to LOCAL is not permitted. Allowed values for this property are: "LOCAL", "EXASCALE" :return: The vm_backup_storage_type of this UpdateVmClusterDetails. :rtype: str """ return self._vm_backup_storage_type @vm_backup_storage_type.setter def vm_backup_storage_type(self, vm_backup_storage_type): """ Sets the vm_backup_storage_type of this UpdateVmClusterDetails. Specifies the type of VM Backups Storage and supported values are LOCAL and EXASCALE. Storage Type can only be changed once from LOCAL to EXASCALE. EXASCALE to LOCAL is not permitted. :param vm_backup_storage_type: The vm_backup_storage_type of this UpdateVmClusterDetails. :type: str """ allowed_values = ["LOCAL", "EXASCALE"] if not value_allowed_none_or_none_sentinel(vm_backup_storage_type, allowed_values): raise ValueError( f"Invalid value for `vm_backup_storage_type`, must be None or one of {allowed_values}" ) self._vm_backup_storage_type = vm_backup_storage_type 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
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings