Sha256: 68b984dfbf2602ea6b3050bca94ae2c2b851c7162296af7b8a43058411e8b446
Contents?: true
Size: 1.72 KB
Versions: 17
Compression:
Stored size: 1.72 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_01_31 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] The ssh key configuration # for Linux VMs. 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-z][a-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
17 entries across 17 versions & 1 rubygems