class Azure::ContainerRegistry::Mgmt::V2018_09_01::Models::PlatformUpdateParameters
The properties for updating the platform configuration.
Attributes
architecture[RW]
@return [Architecture] The OS
architecture. Possible values include: 'amd64', 'x86', 'arm'
os[RW]
@return [OS] The operating system type required for the run. Possible values include: 'Windows', 'Linux'
variant[RW]
@return [Variant] Variant
of the CPU. Possible values include: 'v6', 'v7', 'v8'
Public Class Methods
mapper()
click to toggle source
Mapper for PlatformUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-09-01/generated/azure_mgmt_container_registry/models/platform_update_parameters.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PlatformUpdateParameters', type: { name: 'Composite', class_name: 'PlatformUpdateParameters', model_properties: { os: { client_side_validation: true, required: false, serialized_name: 'os', type: { name: 'String' } }, architecture: { client_side_validation: true, required: false, serialized_name: 'architecture', type: { name: 'String' } }, variant: { client_side_validation: true, required: false, serialized_name: 'variant', type: { name: 'String' } } } } } end