Class: Azure::KeyVault::Mgmt::V2019_09_01::Models::VaultCreateOrUpdateParameters
- Inherits:
-
Object
- Object
- Azure::KeyVault::Mgmt::V2019_09_01::Models::VaultCreateOrUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault_create_or_update_parameters.rb
Overview
Parameters for creating or updating a vault
Instance Attribute Summary collapse
-
#location ⇒ String
should be created.
-
#properties ⇒ VaultProperties
Properties of the vault.
-
#tags ⇒ Hash{String => String}
key vault.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VaultCreateOrUpdateParameters class as Ruby Hash.
Instance Attribute Details
#location ⇒ String
should be created.
17 18 19 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault_create_or_update_parameters.rb', line 17 def location @location end |
#properties ⇒ VaultProperties
Returns Properties of the vault.
24 25 26 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault_create_or_update_parameters.rb', line 24 def properties @properties end |
#tags ⇒ Hash{String => String}
key vault.
21 22 23 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault_create_or_update_parameters.rb', line 21 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for VaultCreateOrUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 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 |
# File 'lib/2019-09-01/generated/azure_mgmt_key_vault/models/vault_create_or_update_parameters.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VaultCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'VaultCreateOrUpdateParameters', model_properties: { location: { client_side_validation: true, required: true, 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 |