Sha256: 7e7996b7fd0e88aa9ec672128be02fb0a43118a4c989ccb92232b3242cfe3eb4
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 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::Batch::Mgmt::V2017_05_01 module Models # # A set of Azure Batch account keys. # class BatchAccountKeys include MsRestAzure # @return [String] The Batch account name. attr_accessor :account_name # @return [String] The primary key associated with the account. attr_accessor :primary # @return [String] The secondary key associated with the account. attr_accessor :secondary # # Mapper for BatchAccountKeys class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'BatchAccountKeys', type: { name: 'Composite', class_name: 'BatchAccountKeys', model_properties: { account_name: { required: false, read_only: true, serialized_name: 'accountName', type: { name: 'String' } }, primary: { required: false, read_only: true, serialized_name: 'primary', type: { name: 'String' } }, secondary: { required: false, read_only: true, serialized_name: 'secondary', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems