Sha256: 9cc0ce43d014ee973d37ab013cd66282c550c961cd671e995f52f582b4cc425f
Contents?: true
Size: 1.94 KB
Versions: 14
Compression:
Stored size: 1.94 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ContainerService::Mgmt::V2017_07_01 module Models # # Profile for the container service orchestrator. # class ContainerServiceOrchestratorProfile include MsRestAzure # @return [ContainerServiceOrchestratorTypes] The orchestrator to use to # manage container service cluster resources. Valid values are # Kubernetes, Swarm, DCOS, DockerCE and Custom. Possible values include: # 'Kubernetes', 'Swarm', 'DCOS', 'DockerCE', 'Custom' attr_accessor :orchestrator_type # @return [String] The version of the orchestrator to use. You can # specify the major.minor.patch part of the actual version.For example, # you can specify version as "1.6.11". attr_accessor :orchestrator_version # # Mapper for ContainerServiceOrchestratorProfile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerServiceOrchestratorProfile', type: { name: 'Composite', class_name: 'ContainerServiceOrchestratorProfile', model_properties: { orchestrator_type: { client_side_validation: true, required: true, serialized_name: 'orchestratorType', type: { name: 'String' } }, orchestrator_version: { client_side_validation: true, required: false, serialized_name: 'orchestratorVersion', type: { name: 'String' } } } } } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems