class Azure::ContainerService::Mgmt::V2019_08_01::Models::OrchestratorVersionProfileListResult

The list of versions for supported orchestrators.

Attributes

id[RW]

@return [String] Id of the orchestrator version profile list result.

name[RW]

@return [String] Name of the orchestrator version profile list result.

orchestrators[RW]

@return [Array<OrchestratorVersionProfile>] List of orchestrator version profiles.

type[RW]

@return [String] Type of the orchestrator version profile list result.

Private Class Methods

mapper() click to toggle source

Mapper for OrchestratorVersionProfileListResult class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-08-01/generated/azure_mgmt_container_service/models/orchestrator_version_profile_list_result.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OrchestratorVersionProfileListResult',
    type: {
      name: 'Composite',
      class_name: 'OrchestratorVersionProfileListResult',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        orchestrators: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.orchestrators',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'OrchestratorVersionProfileElementType',
                type: {
                  name: 'Composite',
                  class_name: 'OrchestratorVersionProfile'
                }
            }
          }
        }
      }
    }
  }
end