Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::StorageInsight
- Inherits:
-
ProxyResource
- Object
- Resource
- ProxyResource
- Azure::OperationalInsights::Mgmt::V2020_08_01::Models::StorageInsight
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb
Overview
The top level storage insight resource container.
Instance Attribute Summary collapse
-
#containers ⇒ Array<String>
workspace should read.
-
#e_tag ⇒ String
The ETag of the storage insight.
-
#status ⇒ StorageInsightStatus
The status of the storage insight.
-
#storage_account ⇒ StorageAccount
The storage account connection details.
-
#tables ⇒ Array<String>
workspace should read.
-
#tags ⇒ Hash{String => String}
Resource tags.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageInsight class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#containers ⇒ Array<String>
workspace should read
17 18 19 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 17 def containers @containers end |
#e_tag ⇒ String
Returns The ETag of the storage insight.
30 31 32 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 30 def e_tag @e_tag end |
#status ⇒ StorageInsightStatus
Returns The status of the storage insight.
27 28 29 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 27 def status @status end |
#storage_account ⇒ StorageAccount
Returns The storage account connection details.
24 25 26 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 24 def storage_account @storage_account end |
#tables ⇒ Array<String>
workspace should read
21 22 23 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 21 def tables @tables end |
#tags ⇒ Hash{String => String}
Returns Resource tags.
33 34 35 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 33 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageInsight class as Ruby Hash. This will be used for serialization/deserialization.
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_insight.rb', line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageInsight', type: { name: 'Composite', class_name: 'StorageInsight', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, containers: { client_side_validation: true, required: false, serialized_name: 'properties.containers', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, tables: { client_side_validation: true, required: false, serialized_name: 'properties.tables', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, storage_account: { client_side_validation: true, required: true, serialized_name: 'properties.storageAccount', type: { name: 'Composite', class_name: 'StorageAccount' } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'Composite', class_name: 'StorageInsightStatus' } }, e_tag: { client_side_validation: true, required: false, serialized_name: 'eTag', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |