Sha256: 7192159049b3b1739b3f1465baacec5d9cef9eca9e0d8f0a9e2df25c23ba97c4
Contents?: true
Size: 1.79 KB
Versions: 11
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_06_01_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
11 entries across 11 versions & 1 rubygems