class Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayTrustedRootCertificate

Trusted Root certificates of an application gateway.

Attributes

data[RW]

@return [String] Certificate public data.

etag[RW]

@return [String] A unique read-only string that changes whenever the resource is updated.

keyvault_secret_id[RW]

@return [String] KeyVault Secret Id for certificate.

name[RW]

@return [String] Name of the trusted root certificate that is unique within an Application Gateway.

provisioning_state[RW]

@return [String] Provisioning state of the trusted root certificate resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.

type[RW]

@return [String] Type of the resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayTrustedRootCertificate',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayTrustedRootCertificate',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        data: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.data',
          type: {
            name: 'String'
          }
        },
        keyvault_secret_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.keyvaultSecretId',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end