class Azure::KeyVault::Mgmt::V2018_02_14_preview::Models::SecretPatchProperties
Properties of the secret
Attributes
attributes[RW]
@return [SecretAttributes] The attributes of the secret.
content_type[RW]
@return [String] The content type of the secret.
value[RW]
@return [String] The value of the secret.
Public Class Methods
mapper()
click to toggle source
Mapper for SecretPatchProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-02-14-preview/generated/azure_mgmt_key_vault/models/secret_patch_properties.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecretPatchProperties', type: { name: 'Composite', class_name: 'SecretPatchProperties', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } }, content_type: { client_side_validation: true, required: false, serialized_name: 'contentType', type: { name: 'String' } }, attributes: { client_side_validation: true, required: false, serialized_name: 'attributes', type: { name: 'Composite', class_name: 'SecretAttributes' } } } } } end