PodShape¶
- 
class oci.container_engine.models.PodShape(**kwargs)¶
- Bases: - object- Pod shape. - Methods - __init__(**kwargs)- Initializes a new PodShape object with values from keyword arguments. - Attributes - memory_options- Gets the memory_options of this PodShape. - name- [Required] Gets the name of this PodShape. - network_bandwidth_options- Gets the network_bandwidth_options of this PodShape. - ocpu_options- Gets the ocpu_options of this PodShape. - processor_description- Gets the processor_description of this PodShape. - 
__init__(**kwargs)¶
- Initializes a new PodShape object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - name (str) – The value to assign to the name property of this PodShape.
- processor_description (str) – The value to assign to the processor_description property of this PodShape.
- ocpu_options (list[oci.container_engine.models.ShapeOcpuOptions]) – The value to assign to the ocpu_options property of this PodShape.
- memory_options (list[oci.container_engine.models.ShapeMemoryOptions]) – The value to assign to the memory_options property of this PodShape.
- network_bandwidth_options (list[oci.container_engine.models.ShapeNetworkBandwidthOptions]) – The value to assign to the network_bandwidth_options property of this PodShape.
 
 - 
memory_options¶
- Gets the memory_options of this PodShape. ShapeMemoryOptions. - Returns: - The memory_options of this PodShape. - Return type: - list[oci.container_engine.models.ShapeMemoryOptions] 
 - 
name¶
- [Required] Gets the name of this PodShape. The name of the identifying shape. - Returns: - The name of this PodShape. - Return type: - str 
 - 
network_bandwidth_options¶
- Gets the network_bandwidth_options of this PodShape. ShapeNetworkBandwidthOptions. - Returns: - The network_bandwidth_options of this PodShape. - Return type: - list[oci.container_engine.models.ShapeNetworkBandwidthOptions] 
 - 
ocpu_options¶
- Gets the ocpu_options of this PodShape. Options for OCPU shape. - Returns: - The ocpu_options of this PodShape. - Return type: - list[oci.container_engine.models.ShapeOcpuOptions] 
 - 
processor_description¶
- Gets the processor_description of this PodShape. A short description of the VM’s processor (CPU). - Returns: - The processor_description of this PodShape. - Return type: - str 
 
-