class Azure::ServiceFabric::Mgmt::V2016_09_01::Models::DiagnosticsStorageAccountConfig
Diagnostics storage account config
Attributes
blob_endpoint[RW]
@return [String] Diagnostics storage account blob endpoint
protected_account_key_name[RW]
@return [String] Protected Diagnostics storage key name
queue_endpoint[RW]
@return [String] Diagnostics storage account queue endpoint
storage_account_name[RW]
@return [String] Diagnostics storage account name
table_endpoint[RW]
@return [String] Diagnostics storage account table endpoint
Public Class Methods
mapper()
click to toggle source
Mapper for DiagnosticsStorageAccountConfig
class as Ruby Hash. This will be used for serialization/deserialization.
# 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