class Azure::RecoveryServices::Mgmt::V2016_06_01::Models::VaultCertificateResponse
Certificate corresponding to a vault that can be used by clients to register themselves with the vault.
Attributes
id[RW]
@return [String] Resource
Id represents the complete path to the resource.
name[RW]
@return [String] Resource
name associated with the resource.
properties[RW]
@return [ResourceCertificateDetails]
type[RW]
@return [String] Resource
type represents the complete path of the form Namespace/ResourceType/ResourceType/…
Private Class Methods
mapper()
click to toggle source
Mapper for VaultCertificateResponse
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-06-01/generated/azure_mgmt_recovery_services/models/vault_certificate_response.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VaultCertificateResponse', type: { name: 'Composite', class_name: 'VaultCertificateResponse', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', polymorphic_discriminator: 'authType', uber_parent: 'ResourceCertificateDetails', class_name: 'ResourceCertificateDetails' } } } } } end