Class: Azure::ServiceFabric::V6_4_0_36::Models::SecretValueResourceDescription
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_4_0_36::Models::SecretValueResourceDescription
- Includes:
- MsRestAzure
- Defined in:
- lib/6.4.0.36/generated/azure_service_fabric/models/secret_value_resource_description.rb
Overview
This type describes a value of a secret resource. The name of this resource is the version identifier corresponding to this secret value.
Instance Attribute Summary collapse
-
#name ⇒ String
Version identifier of the secret value.
-
#value ⇒ String
The actual value of the secret.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SecretValueResourceDescription class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns Version identifier of the secret value.
17 18 19 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/secret_value_resource_description.rb', line 17 def name @name end |
#value ⇒ String
Returns The actual value of the secret.
20 21 22 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/secret_value_resource_description.rb', line 20 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for SecretValueResourceDescription 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 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/secret_value_resource_description.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecretValueResourceDescription', type: { name: 'Composite', class_name: 'SecretValueResourceDescription', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'properties.value', type: { name: 'String' } } } } } end |