Class: Azure::ServiceFabric::V6_5_0_36::Models::SecretValueProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/secret_value_properties.rb

Overview

This type describes properties of secret value resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#valueString

Returns The actual value of the secret.

Returns:

  • (String)

    The actual value of the secret.



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/secret_value_properties.rb', line 16

def value
  @value
end

Class Method Details

.mapperObject

Mapper for SecretValueProperties class as Ruby Hash. This will be used for serialization/deserialization.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/secret_value_properties.rb', line 23

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SecretValueProperties',
    type: {
      name: 'Composite',
      class_name: 'SecretValueProperties',
      model_properties: {
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end