class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StorageAccount

The properties that are associated with an Azure Storage account

Attributes

account_key[RW]

@return [String] The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.

account_name[RW]

@return [String] The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.

Private Class Methods

mapper() click to toggle source

Mapper for StorageAccount class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/storage_account.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageAccount',
    type: {
      name: 'Composite',
      class_name: 'StorageAccount',
      model_properties: {
        account_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        },
        account_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'accountKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end