SupportedShapeSummary¶
-
class
oci.marketplace_publisher.models.
SupportedShapeSummary
(**kwargs)¶ Bases:
object
Summary of the database system shape.
Methods
__init__
(**kwargs)Initializes a new SupportedShapeSummary object with values from keyword arguments. Attributes
is_flexible
[Required] Gets the is_flexible of this SupportedShapeSummary. memory_options
Gets the memory_options of this SupportedShapeSummary. ocpu_options
Gets the ocpu_options of this SupportedShapeSummary. shape
[Required] Gets the shape of this SupportedShapeSummary. -
__init__
(**kwargs)¶ Initializes a new SupportedShapeSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - shape (str) – The value to assign to the shape property of this SupportedShapeSummary.
- is_flexible (bool) – The value to assign to the is_flexible property of this SupportedShapeSummary.
- ocpu_options (oci.marketplace_publisher.models.ShapeOcpuOptions) – The value to assign to the ocpu_options property of this SupportedShapeSummary.
- memory_options (oci.marketplace_publisher.models.ShapeMemoryOptions) – The value to assign to the memory_options property of this SupportedShapeSummary.
-
is_flexible
¶ [Required] Gets the is_flexible of this SupportedShapeSummary. Indicates if the shape is a flex shape.
Returns: The is_flexible of this SupportedShapeSummary. Return type: bool
-
memory_options
¶ Gets the memory_options of this SupportedShapeSummary.
Returns: The memory_options of this SupportedShapeSummary. Return type: oci.marketplace_publisher.models.ShapeMemoryOptions
-
ocpu_options
¶ Gets the ocpu_options of this SupportedShapeSummary.
Returns: The ocpu_options of this SupportedShapeSummary. Return type: oci.marketplace_publisher.models.ShapeOcpuOptions
-
shape
¶ [Required] Gets the shape of this SupportedShapeSummary. The name of the Compute VM shape. Example: VM.Standard.E4.Flex
Returns: The shape of this SupportedShapeSummary. Return type: str
-