Class: Azure::ServiceFabric::Mgmt::V2016_09_01::Models::DiagnosticsStorageAccountConfig
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2016_09_01::Models::DiagnosticsStorageAccountConfig
- 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
-
#blob_endpoint ⇒ String
Diagnostics storage account blob endpoint.
-
#protected_account_key_name ⇒ String
Protected Diagnostics storage key name.
-
#queue_endpoint ⇒ String
Diagnostics storage account queue endpoint.
-
#storage_account_name ⇒ String
Diagnostics storage account name.
-
#table_endpoint ⇒ String
Diagnostics storage account table endpoint.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DiagnosticsStorageAccountConfig class as Ruby Hash.
Instance Attribute Details
#blob_endpoint ⇒ String
Returns 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_name ⇒ String
Returns 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 protected_account_key_name @protected_account_key_name end |
#queue_endpoint ⇒ String
Returns 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_name ⇒ String
Returns 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 storage_account_name @storage_account_name end |
#table_endpoint ⇒ String
Returns 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
.mapper ⇒ Object
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 |