Class: Azure::ARM::Storage::Models::ListAccountSasResponse

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

Overview

The List SAS credentials operation response.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#account_sas_tokenString

Returns List SAS credentials of storage account.

Returns:

  • (String)

    List SAS credentials of storage account.



17
18
19
# File 'lib/generated/azure_mgmt_storage/models/list_account_sas_response.rb', line 17

def 
  @account_sas_token
end

Class Method Details

.mapperObject

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



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/generated/azure_mgmt_storage/models/list_account_sas_response.rb', line 24

def self.mapper()
  {
    required: false,
    serialized_name: 'ListAccountSasResponse',
    type: {
      name: 'Composite',
      class_name: 'ListAccountSasResponse',
      model_properties: {
        account_sas_token: {
          required: false,
          read_only: true,
          serialized_name: 'accountSasToken',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end