Class: Azure::ContainerService::Mgmt::V2017_01_31::Models::ContainerServiceCustomProfile

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-31/generated/azure_mgmt_container_service/models/container_service_custom_profile.rb

Overview

Properties to configure a custom container service cluster.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#orchestratorString

Returns The name of the custom orchestrator to use.

Returns:

  • (String)

    The name of the custom orchestrator to use.



16
17
18
# File 'lib/2017-01-31/generated/azure_mgmt_container_service/models/container_service_custom_profile.rb', line 16

def orchestrator
  @orchestrator
end

Class Method Details

.mapperObject

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



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/2017-01-31/generated/azure_mgmt_container_service/models/container_service_custom_profile.rb', line 23

def self.mapper()
  {
    required: false,
    serialized_name: 'ContainerServiceCustomProfile',
    type: {
      name: 'Composite',
      class_name: 'ContainerServiceCustomProfile',
      model_properties: {
        orchestrator: {
          required: true,
          serialized_name: 'orchestrator',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end