class Azure::ServiceFabric::V6_4_0_36::Models::SecretValue

This type represents the unencrypted value of the secret.

Attributes

value[RW]

@return [String] The actual value of the secret.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.4.0.36/generated/azure_service_fabric/models/secret_value.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SecretValue',
    type: {
      name: 'Composite',
      class_name: 'SecretValue',
      model_properties: {
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end