Class: Azure::ApiManagement::Mgmt::V2019_12_01::Models::X509CertificateName

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb

Overview

Properties of server X509Names.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#issuer_certificate_thumbprintString

Returns Thumbprint for the Issuer of the Certificate.

Returns:

  • (String)

    Thumbprint for the Issuer of the Certificate.



19
20
21
# File 'lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 19

def issuer_certificate_thumbprint
  @issuer_certificate_thumbprint
end

#nameString

Returns Common Name of the Certificate.

Returns:

  • (String)

    Common Name of the Certificate.



16
17
18
# File 'lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 16

def name
  @name
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 26

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