Class: Azure::KeyVault::Mgmt::V2019_09_01::Models::Vault
- Inherits:
-
Object
- Object
- Azure::KeyVault::Mgmt::V2019_09_01::Models::Vault
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb
Overview
Resource information with extended details.
Instance Attribute Summary collapse
-
#id ⇒ String
Fully qualified identifier of the key vault resource.
-
#location ⇒ String
Azure location of the key vault resource.
-
#name ⇒ String
Name of the key vault resource.
-
#properties ⇒ VaultProperties
Properties of the vault.
-
#tags ⇒ Hash{String => String}
resource.
-
#type ⇒ String
Resource type of the key vault resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Vault class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns Fully qualified identifier of the key vault resource.
16 17 18 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 16 def id @id end |
#location ⇒ String
Returns Azure location of the key vault resource.
25 26 27 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 25 def location @location end |
#name ⇒ String
Returns Name of the key vault resource.
19 20 21 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 19 def name @name end |
#properties ⇒ VaultProperties
Returns Properties of the vault.
32 33 34 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 32 def properties @properties end |
#tags ⇒ Hash{String => String}
resource.
29 30 31 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 29 def end |
#type ⇒ String
Returns Resource type of the key vault resource.
22 23 24 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for Vault class as Ruby Hash. This will be used for serialization/deserialization.
39 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 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault.rb', line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Vault', type: { name: 'Composite', class_name: 'Vault', 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' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', 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' } } } }, properties: { client_side_validation: true, required: true, serialized_name: 'properties', default_value: {}, type: { name: 'Composite', class_name: 'VaultProperties' } } } } } end |