Class: Azure::ARM::StreamAnalytics::Models::StorageAccount

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_stream_analytics/models/storage_account.rb

Overview

The properties that are associated with an Azure Storage account

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#account_keyString

Required on PUT (CreateOrReplace) requests.

Returns:

  • (String)

    The account key for the Azure Storage account.



22
23
24
# File 'lib/generated/azure_mgmt_stream_analytics/models/storage_account.rb', line 22

def 
  @account_key
end

#account_nameString

(CreateOrReplace) requests.

Returns:

  • (String)

    The name of the Azure Storage account. Required on PUT



18
19
20
# File 'lib/generated/azure_mgmt_stream_analytics/models/storage_account.rb', line 18

def 
  @account_name
end

Class Method Details

.mapperObject

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



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/generated/azure_mgmt_stream_analytics/models/storage_account.rb', line 29

def self.mapper()
  {
    required: false,
    serialized_name: 'StorageAccount',
    type: {
      name: 'Composite',
      class_name: 'StorageAccount',
      model_properties: {
        account_name: {
          required: false,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        },
        account_key: {
          required: false,
          serialized_name: 'accountKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end