Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateStorageAccountWithAccountParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb

Overview

The parameters used to update an Azure Storage account while updating a Data Lake Analytics account.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#access_keyString

Storage account that will be used to connect to it.

Returns:

  • (String)

    The updated access key associated with this Azure



22
23
24
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 22

def access_key
  @access_key
end

#nameString

update.

Returns:

  • (String)

    The unique name of the Azure Storage account to



18
19
20
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 18

def name
  @name
end

#suffixString

Returns The optional suffix for the storage account.

Returns:

  • (String)

    The optional suffix for the storage account.



25
26
27
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 25

def suffix
  @suffix
end

Class Method Details

.mapperObject

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



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UpdateStorageAccountWithAccountParameters',
    type: {
      name: 'Composite',
      class_name: 'UpdateStorageAccountWithAccountParameters',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        access_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.accessKey',
          type: {
            name: 'String'
          }
        },
        suffix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.suffix',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end