class Azure::ContainerService::Mgmt::V2017_08_31::Models::OrchestratorProfile
Contains information about orchestrator.
Attributes
orchestrator_type[RW]
@return [String] Orchestrator type.
orchestrator_version[RW]
@return [String] Orchestrator version (major, minor, patch).
Public Class Methods
mapper()
click to toggle source
Mapper for OrchestratorProfile
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-08-31/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