Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageAccount
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb
Overview
The storage Account.
Instance Attribute Summary collapse
-
#container ⇒ String
specified for WASB storage accounts.
-
#file_system ⇒ String
Lake Storage Gen 2.
-
#is_default ⇒ Boolean
storage account.
-
#key ⇒ String
The storage account access key.
-
#msi_resource_id ⇒ String
the storage account, only to be specified for Azure Data Lake Storage Gen 2.
-
#name ⇒ String
The name of the storage account.
-
#resource_id ⇒ String
specified for Azure Data Lake Storage Gen 2.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash.
Instance Attribute Details
#container ⇒ String
specified for WASB storage accounts.
24 25 26 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 24 def container @container end |
#file_system ⇒ String
Lake Storage Gen 2.
28 29 30 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 28 def file_system @file_system end |
#is_default ⇒ Boolean
storage account.
20 21 22 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 20 def is_default @is_default end |
#key ⇒ String
Returns The storage account access key.
31 32 33 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 31 def key @key end |
#msi_resource_id ⇒ String
the storage account, only to be specified for Azure Data Lake Storage Gen 2.
40 41 42 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 40 def msi_resource_id @msi_resource_id end |
#name ⇒ String
Returns The name of the storage account.
16 17 18 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 16 def name @name end |
#resource_id ⇒ String
specified for Azure Data Lake Storage Gen 2.
35 36 37 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 35 def resource_id @resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccount', type: { name: 'Composite', class_name: 'StorageAccount', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, is_default: { client_side_validation: true, required: false, serialized_name: 'isDefault', type: { name: 'Boolean' } }, container: { client_side_validation: true, required: false, serialized_name: 'container', type: { name: 'String' } }, file_system: { client_side_validation: true, required: false, serialized_name: 'fileSystem', type: { name: 'String' } }, key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'String' } }, resource_id: { client_side_validation: true, required: false, serialized_name: 'resourceId', type: { name: 'String' } }, msi_resource_id: { client_side_validation: true, required: false, serialized_name: 'msiResourceId', type: { name: 'String' } } } } } end |