class Azure::ContainerService::Mgmt::V2019_08_01::Models::OrchestratorProfile
Contains information about orchestrator.
Attributes
is_preview[RW]
@return [Boolean] Whether Kubernetes version is currently in preview.
orchestrator_type[RW]
@return [String] Orchestrator type.
orchestrator_version[RW]
@return [String] Orchestrator version (major, minor, patch).
Private Class Methods
mapper()
click to toggle source
Mapper for OrchestratorProfile
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-08-01/generated/azure_mgmt_container_service/models/orchestrator_profile.rb, line 29 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: false, serialized_name: 'orchestratorType', type: { name: 'String' } }, orchestrator_version: { client_side_validation: true, required: true, serialized_name: 'orchestratorVersion', type: { name: 'String' } }, is_preview: { client_side_validation: true, required: false, serialized_name: 'isPreview', type: { name: 'Boolean' } } } } } end