# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::Mgmt::V2018_02_01 module Models # # The storage account information for storing Service Fabric diagnostic # logs. # class DiagnosticsStorageAccountConfig include MsRestAzure # @return [String] The Azure storage account name. attr_accessor :storage_account_name # @return [String] The protected diagnostics storage key name. attr_accessor :protected_account_key_name # @return [String] The blob endpoint of the azure storage account. attr_accessor :blob_endpoint # @return [String] The queue endpoint of the azure storage account. attr_accessor :queue_endpoint # @return [String] The table endpoint of the azure storage account. attr_accessor :table_endpoint # # Mapper for DiagnosticsStorageAccountConfig class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end