Sha256: 3e30ccb466b5cf9f453b0b399afffb6023b79f4836b5f66950faa6ae32559899
Contents?: true
Size: 1.74 KB
Versions: 8
Compression:
Stored size: 1.74 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::V2019_06_01 module Models # # Profile for Linux VMs in the container service cluster. # class ContainerServiceLinuxProfile include MsRestAzure # @return [String] The administrator username to use for Linux VMs. attr_accessor :admin_username # @return [ContainerServiceSshConfiguration] SSH configuration for # Linux-based VMs running on Azure. attr_accessor :ssh # # Mapper for ContainerServiceLinuxProfile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerServiceLinuxProfile', type: { name: 'Composite', class_name: 'ContainerServiceLinuxProfile', model_properties: { admin_username: { client_side_validation: true, required: true, serialized_name: 'adminUsername', constraints: { Pattern: '^[A-Za-z][-A-Za-z0-9_]*$' }, type: { name: 'String' } }, ssh: { client_side_validation: true, required: true, serialized_name: 'ssh', type: { name: 'Composite', class_name: 'ContainerServiceSshConfiguration' } } } } } end end end end
Version data entries
8 entries across 8 versions & 1 rubygems