class Azure::ServiceFabric::Mgmt::V2018_02_01::Models::DiagnosticsStorageAccountConfig

The storage account information for storing Service Fabric diagnostic logs.

Attributes

blob_endpoint[RW]

@return [String] The blob endpoint of the azure storage account.

protected_account_key_name[RW]

@return [String] The protected diagnostics storage key name.

queue_endpoint[RW]

@return [String] The queue endpoint of the azure storage account.

storage_account_name[RW]

@return [String] The Azure storage account name.

table_endpoint[RW]

@return [String] The table endpoint of the azure storage account.

Private Class Methods

mapper() click to toggle source

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

# 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