Class: Azure::KeyVault::V7_2_preview::Models::KeyReleaseAuthority
- Inherits:
-
Object
- Object
- Azure::KeyVault::V7_2_preview::Models::KeyReleaseAuthority
- Includes:
- MsRestAzure
- Defined in:
- lib/7.2-preview/generated/azure_key_vault/models/key_release_authority.rb
Overview
Model object.
Instance Attribute Summary collapse
- #all_of ⇒ Array<KeyReleaseCondition>
-
#authority_url ⇒ String
Base URL of the attestation service.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for KeyReleaseAuthority class as Ruby Hash.
Instance Attribute Details
#all_of ⇒ Array<KeyReleaseCondition>
20 21 22 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/key_release_authority.rb', line 20 def all_of @all_of end |
#authority_url ⇒ String
Returns Base URL of the attestation service.
17 18 19 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/key_release_authority.rb', line 17 def @authority_url end |
Class Method Details
.mapper ⇒ Object
Mapper for KeyReleaseAuthority class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 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 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/key_release_authority.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'KeyReleaseAuthority', type: { name: 'Composite', class_name: 'KeyReleaseAuthority', model_properties: { authority_url: { client_side_validation: true, required: false, serialized_name: 'authority', constraints: { MinLength: 1 }, type: { name: 'String' } }, all_of: { client_side_validation: true, required: false, serialized_name: 'allOf', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'KeyReleaseConditionElementType', type: { name: 'Composite', class_name: 'KeyReleaseCondition' } } } } } } } end |