class Azure::ContainerService::Mgmt::V2016_09_30::Models::ContainerServiceCustomProfile

Properties to configure a custom container service cluster.

Attributes

orchestrator[RW]

@return [String] The name of the custom orchestrator to use.

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-09-30/generated/azure_mgmt_container_service/models/container_service_custom_profile.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ContainerServiceCustomProfile',
    type: {
      name: 'Composite',
      class_name: 'ContainerServiceCustomProfile',
      model_properties: {
        orchestrator: {
          client_side_validation: true,
          required: true,
          serialized_name: 'orchestrator',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end