Sha256: cbbba6de6936336d8304e98222b05f3c471145f6beaee7dd446f3a6df34e063c
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 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::ContainerInstance::Mgmt::V2017_08_01_preview module Models # # Image registry credential. # class ImageRegistryCredential include MsRestAzure # @return [String] The Docker image registry server without a protocol # such as "http" and "https". attr_accessor :server # @return [String] The username for the private registry. attr_accessor :username # @return [String] The password for the private registry. attr_accessor :password # # Mapper for ImageRegistryCredential class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ImageRegistryCredential', type: { name: 'Composite', class_name: 'ImageRegistryCredential', model_properties: { server: { required: true, serialized_name: 'server', type: { name: 'String' } }, username: { required: true, serialized_name: 'username', type: { name: 'String' } }, password: { required: false, serialized_name: 'password', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems