Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::DiagnosticsStorageAccountConfig
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::DiagnosticsStorageAccountConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb
Overview
The storage account information for storing Service Fabric diagnostic logs.
Instance Attribute Summary collapse
-
#blob_endpoint ⇒ String
The blob endpoint of the azure storage account.
-
#protected_account_key_name ⇒ String
The protected diagnostics storage key name.
-
#queue_endpoint ⇒ String
The queue endpoint of the azure storage account.
-
#storage_account_name ⇒ String
The Azure storage account name.
-
#table_endpoint ⇒ String
The table endpoint of the azure storage account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DiagnosticsStorageAccountConfig class as Ruby Hash.
Instance Attribute Details
#blob_endpoint ⇒ String
Returns The blob endpoint of the azure storage account.
23 24 25 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 23 def blob_endpoint @blob_endpoint end |
#protected_account_key_name ⇒ String
Returns The protected diagnostics storage key name.
20 21 22 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 20 def protected_account_key_name @protected_account_key_name end |
#queue_endpoint ⇒ String
Returns The queue endpoint of the azure storage account.
26 27 28 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 26 def queue_endpoint @queue_endpoint end |
#storage_account_name ⇒ String
Returns The Azure storage account name.
17 18 19 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 17 def storage_account_name @storage_account_name end |
#table_endpoint ⇒ String
Returns The table endpoint of the azure storage account.
29 30 31 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 29 def table_endpoint @table_endpoint end |
Class Method Details
.mapper ⇒ Object
Mapper for DiagnosticsStorageAccountConfig class as Ruby Hash. This will be used for serialization/deserialization.
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 88 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/diagnostics_storage_account_config.rb', line 36 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 |