class Azure::IotHub::Mgmt::V2019_07_01_preview::Models::CertificateWithNonceDescription
The X509 Certificate.
Attributes
etag[RW]
@return [String] The entity tag.
id[RW]
@return [String] The resource identifier.
name[RW]
@return [String] The name of the certificate.
properties[RW]
@return [CertificatePropertiesWithNonce]
type[RW]
@return [String] The resource type.
Public Class Methods
mapper()
click to toggle source
Mapper for CertificateWithNonceDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-07-01-preview/generated/azure_mgmt_iot_hub/models/certificate_with_nonce_description.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CertificateWithNonceDescription', type: { name: 'Composite', class_name: 'CertificateWithNonceDescription', model_properties: { properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', class_name: 'CertificatePropertiesWithNonce' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, read_only: true, serialized_name: 'etag', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } } } } } end