Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb

Overview

Access information for a storage account.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#keyString

Returns Specifies the key used to access the storage account.

Returns:

  • (String)

    Specifies the key used to access the storage account.



19
20
21
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 19

def key
  @key
end

#nameString

Returns Specifies the name of the storage account.

Returns:

  • (String)

    Specifies the name of the storage account.



16
17
18
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 16

def name
  @name
end

Class Method Details

.mapperObject

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



26
27
28
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/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageAccount',
    type: {
      name: 'Composite',
      class_name: 'StorageAccount',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'key',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end