Class: Azure::ServiceFabric::Mgmt::V2016_09_01::Models::DiagnosticsStorageAccountConfig

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb

Overview

Diagnostics storage account config

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#blob_endpointString

Returns Diagnostics storage account blob endpoint.

Returns:

  • (String)

    Diagnostics storage account blob endpoint



22
23
24
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 22

def blob_endpoint
  @blob_endpoint
end

#protected_account_key_nameString

Returns Protected Diagnostics storage key name.

Returns:

  • (String)

    Protected Diagnostics storage key name



19
20
21
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 19

def 
  
end

#queue_endpointString

Returns Diagnostics storage account queue endpoint.

Returns:

  • (String)

    Diagnostics storage account queue endpoint



25
26
27
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 25

def queue_endpoint
  @queue_endpoint
end

#storage_account_nameString

Returns Diagnostics storage account name.

Returns:

  • (String)

    Diagnostics storage account name



16
17
18
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 16

def 
  
end

#table_endpointString

Returns Diagnostics storage account table endpoint.

Returns:

  • (String)

    Diagnostics storage account table endpoint



28
29
30
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 28

def table_endpoint
  @table_endpoint
end

Class Method Details

.mapperObject

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



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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 35

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DiagnosticsStorageAccountConfig',
    type: {
      name: 'Composite',
      class_name: 'DiagnosticsStorageAccountConfig',
      model_properties: {
        storage_account_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'storageAccountName',
          type: {
            name: 'String'
          }
        },
        protected_account_key_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'protectedAccountKeyName',
          type: {
            name: 'String'
          }
        },
        blob_endpoint: {
          client_side_validation: true,
          required: true,
          serialized_name: 'blobEndpoint',
          type: {
            name: 'String'
          }
        },
        queue_endpoint: {
          client_side_validation: true,
          required: true,
          serialized_name: 'queueEndpoint',
          type: {
            name: 'String'
          }
        },
        table_endpoint: {
          client_side_validation: true,
          required: true,
          serialized_name: 'tableEndpoint',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end