Class: Azure::ARM::DataLakeStore::Models::DataLakeStoreAccountBasic
- Inherits:
-
MsRestAzure::Resource
- Object
- MsRestAzure::Resource
- Azure::ARM::DataLakeStore::Models::DataLakeStoreAccountBasic
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb
Overview
Basic Data Lake Store account information, returned on list calls.
Instance Attribute Summary collapse
-
#account_id ⇒ Object
account.
-
#creation_time ⇒ DateTime
The account creation time.
-
#endpoint ⇒ String
The full CName endpoint for this account.
-
#last_modified_time ⇒ DateTime
The account last modified time.
-
#provisioning_state ⇒ DataLakeStoreAccountStatus
Data Lake Store account.
-
#state ⇒ DataLakeStoreAccountState
account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataLakeStoreAccountBasic class as Ruby Hash.
Instance Attribute Details
#account_id ⇒ Object
account.
37 38 39 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 37 def account_id @account_id end |
#creation_time ⇒ DateTime
Returns the account creation time.
27 28 29 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 27 def creation_time @creation_time end |
#endpoint ⇒ String
Returns the full CName endpoint for this account.
33 34 35 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 33 def endpoint @endpoint end |
#last_modified_time ⇒ DateTime
Returns the account last modified time.
30 31 32 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 30 def last_modified_time @last_modified_time end |
#provisioning_state ⇒ DataLakeStoreAccountStatus
Data Lake Store account. Possible values include: ‘Failed’, ‘Creating’, ‘Running’, ‘Succeeded’, ‘Patching’, ‘Suspending’, ‘Resuming’, ‘Deleting’, ‘Deleted’
20 21 22 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 20 def provisioning_state @provisioning_state end |
#state ⇒ DataLakeStoreAccountState
account. Possible values include: ‘Active’, ‘Suspended’
24 25 26 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 24 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for DataLakeStoreAccountBasic class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_datalake_store/models/data_lake_store_account_basic.rb', line 44 def self.mapper() { required: false, serialized_name: 'DataLakeStoreAccountBasic', type: { name: 'Composite', class_name: 'DataLakeStoreAccountBasic', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, provisioning_state: { required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'Enum', module: 'DataLakeStoreAccountStatus' } }, state: { required: false, read_only: true, serialized_name: 'properties.state', type: { name: 'Enum', module: 'DataLakeStoreAccountState' } }, creation_time: { required: false, read_only: true, serialized_name: 'properties.creationTime', type: { name: 'DateTime' } }, last_modified_time: { required: false, read_only: true, serialized_name: 'properties.lastModifiedTime', type: { name: 'DateTime' } }, endpoint: { required: false, read_only: true, serialized_name: 'properties.endpoint', type: { name: 'String' } }, account_id: { required: false, read_only: true, serialized_name: 'properties.accountId', type: { name: 'String' } } } } } end |