Sha256: 03d427194214e64190b6a8fb6346e5f92f053eec35bce667ad312c73d2b028fe
Contents?: true
Size: 1.79 KB
Versions: 12
Compression:
Stored size: 1.79 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::MediaServices::Mgmt::V2018_03_30_preview module Models # # The storage account details. # class StorageAccount include MsRestAzure # @return [String] The ID of the storage account resource. Media Services # relies on tables and queues as well as blobs, so the primary storage # account must be a Standard Storage account (either # Microsoft.ClassicStorage or Microsoft.Storage). Blob only storage # accounts can be added as secondary storage accounts. attr_accessor :id # @return [StorageAccountType] The type of the storage account. Possible # values include: 'Primary', 'Secondary' attr_accessor :type # # Mapper for StorageAccount class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccount', type: { name: 'Composite', class_name: 'StorageAccount', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'Enum', module: 'StorageAccountType' } } } } } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems