Sha256: df0caa67b71c913e6afda77e81ebd9b3839c7bfe3ac59dbeae5041e606e38c45
Contents?: true
Size: 1.84 KB
Versions: 7
Compression:
Stored size: 1.84 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_10_01 module Models # # Profile for Windows VMs in the container service cluster. # class ManagedClusterWindowsProfile include MsRestAzure # @return [String] The administrator username to use for Windows VMs. attr_accessor :admin_username # @return [String] The administrator password to use for Windows VMs. attr_accessor :admin_password # # Mapper for ManagedClusterWindowsProfile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagedClusterWindowsProfile', type: { name: 'Composite', class_name: 'ManagedClusterWindowsProfile', model_properties: { admin_username: { client_side_validation: true, required: true, serialized_name: 'adminUsername', constraints: { Pattern: '^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$' }, type: { name: 'String' } }, admin_password: { client_side_validation: true, required: false, serialized_name: 'adminPassword', constraints: { Pattern: '^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\^&\*\(\)])[a-zA-Z\d!@#$%\^&\*\(\)]{12,123}$' }, type: { name: 'String' } } } } } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems