Class: Azure::Storage::Mgmt::V2021_01_01::Models::ListAccountSasResponse

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2021-01-01/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.



16
17
18
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/list_account_sas_response.rb', line 16

def 
  @account_sas_token
end

Class Method Details

.mapperObject

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



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

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