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: 20220919 from .instance_source_details import InstanceSourceDetails 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 InstanceSourceViaImageDetails(InstanceSourceDetails): """ InstanceSourceViaImageDetails model. """ def __init__(self, **kwargs): """ Initializes a new InstanceSourceViaImageDetails object with values from keyword arguments. The default value of the :py:attr:`~oci.cloud_migrations.models.InstanceSourceViaImageDetails.source_type` attribute of this class is ``image`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param source_type: The value to assign to the source_type property of this InstanceSourceViaImageDetails. :type source_type: str :param boot_volume_size_in_gbs: The value to assign to the boot_volume_size_in_gbs property of this InstanceSourceViaImageDetails. :type boot_volume_size_in_gbs: int :param image_id: The value to assign to the image_id property of this InstanceSourceViaImageDetails. :type image_id: str :param kms_key_id: The value to assign to the kms_key_id property of this InstanceSourceViaImageDetails. :type kms_key_id: str :param boot_volume_vpus_per_gb: The value to assign to the boot_volume_vpus_per_gb property of this InstanceSourceViaImageDetails. :type boot_volume_vpus_per_gb: int """ self.swagger_types = { 'source_type': 'str', 'boot_volume_size_in_gbs': 'int', 'image_id': 'str', 'kms_key_id': 'str', 'boot_volume_vpus_per_gb': 'int' } self.attribute_map = { 'source_type': 'sourceType', 'boot_volume_size_in_gbs': 'bootVolumeSizeInGBs', 'image_id': 'imageId', 'kms_key_id': 'kmsKeyId', 'boot_volume_vpus_per_gb': 'bootVolumeVpusPerGB' } self._source_type = None self._boot_volume_size_in_gbs = None self._image_id = None self._kms_key_id = None self._boot_volume_vpus_per_gb = None self._source_type = 'image' @property def boot_volume_size_in_gbs(self): """ Gets the boot_volume_size_in_gbs of this InstanceSourceViaImageDetails. The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB). :return: The boot_volume_size_in_gbs of this InstanceSourceViaImageDetails. :rtype: int """ return self._boot_volume_size_in_gbs @boot_volume_size_in_gbs.setter def boot_volume_size_in_gbs(self, boot_volume_size_in_gbs): """ Sets the boot_volume_size_in_gbs of this InstanceSourceViaImageDetails. The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB). :param boot_volume_size_in_gbs: The boot_volume_size_in_gbs of this InstanceSourceViaImageDetails. :type: int """ self._boot_volume_size_in_gbs = boot_volume_size_in_gbs @property def image_id(self): """ **[Required]** Gets the image_id of this InstanceSourceViaImageDetails. The OCID of the image used to boot the instance. :return: The image_id of this InstanceSourceViaImageDetails. :rtype: str """ return self._image_id @image_id.setter def image_id(self, image_id): """ Sets the image_id of this InstanceSourceViaImageDetails. The OCID of the image used to boot the instance. :param image_id: The image_id of this InstanceSourceViaImageDetails. :type: str """ self._image_id = image_id @property def kms_key_id(self): """ Gets the kms_key_id of this InstanceSourceViaImageDetails. The OCID of the key management key to assign as the master encryption key for the boot volume. :return: The kms_key_id of this InstanceSourceViaImageDetails. :rtype: str """ return self._kms_key_id @kms_key_id.setter def kms_key_id(self, kms_key_id): """ Sets the kms_key_id of this InstanceSourceViaImageDetails. The OCID of the key management key to assign as the master encryption key for the boot volume. :param kms_key_id: The kms_key_id of this InstanceSourceViaImageDetails. :type: str """ self._kms_key_id = kms_key_id @property def boot_volume_vpus_per_gb(self): """ Gets the boot_volume_vpus_per_gb of this InstanceSourceViaImageDetails. The number of volume performance units (VPUs) that will be applied to this volume per GB that represents the Block Volume service's elastic performance options. See `Block Volume Performance Levels`__ for more information. Allowed values: * `10`: Represents Balanced option. * `20`: Represents Higher Performance option. * `30`-`120`: Represents the Ultra High Performance option. For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB. __ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels :return: The boot_volume_vpus_per_gb of this InstanceSourceViaImageDetails. :rtype: int """ return self._boot_volume_vpus_per_gb @boot_volume_vpus_per_gb.setter def boot_volume_vpus_per_gb(self, boot_volume_vpus_per_gb): """ Sets the boot_volume_vpus_per_gb of this InstanceSourceViaImageDetails. The number of volume performance units (VPUs) that will be applied to this volume per GB that represents the Block Volume service's elastic performance options. See `Block Volume Performance Levels`__ for more information. Allowed values: * `10`: Represents Balanced option. * `20`: Represents Higher Performance option. * `30`-`120`: Represents the Ultra High Performance option. For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB. __ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels :param boot_volume_vpus_per_gb: The boot_volume_vpus_per_gb of this InstanceSourceViaImageDetails. :type: int """ self._boot_volume_vpus_per_gb = boot_volume_vpus_per_gb 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