Class: Azure::ContainerService::Mgmt::V2019_02_01::Models::OrchestratorProfile

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-02-01/generated/azure_mgmt_container_service/models/orchestrator_profile.rb

Overview

Contains information about orchestrator.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#orchestrator_typeString

Returns Orchestrator type.

Returns:

  • (String)

    Orchestrator type.



16
17
18
# File 'lib/2019-02-01/generated/azure_mgmt_container_service/models/orchestrator_profile.rb', line 16

def orchestrator_type
  @orchestrator_type
end

#orchestrator_versionString

Returns Orchestrator version (major, minor, patch).

Returns:

  • (String)

    Orchestrator version (major, minor, patch).



19
20
21
# File 'lib/2019-02-01/generated/azure_mgmt_container_service/models/orchestrator_profile.rb', line 19

def orchestrator_version
  @orchestrator_version
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/2019-02-01/generated/azure_mgmt_container_service/models/orchestrator_profile.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OrchestratorProfile',
    type: {
      name: 'Composite',
      class_name: 'OrchestratorProfile',
      model_properties: {
        orchestrator_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'orchestratorType',
          type: {
            name: 'String'
          }
        },
        orchestrator_version: {
          client_side_validation: true,
          required: true,
          serialized_name: 'orchestratorVersion',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end