Class: Azure::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::LongTermStorageConfigurationOutput

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/models/long_term_storage_configuration_output.rb

Overview

The storage configuration provides the non-secret connection details about the customer storage account that is used to store the environment’s data.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#account_nameString

environment’s long term data.

Returns:

  • (String)

    The name of the storage account that will hold the



19
20
21
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/models/long_term_storage_configuration_output.rb', line 19

def 
  @account_name
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/models/long_term_storage_configuration_output.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'LongTermStorageConfigurationOutput',
    type: {
      name: 'Composite',
      class_name: 'LongTermStorageConfigurationOutput',
      model_properties: {
        account_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end