class Azure::Network::Mgmt::V2016_09_01::Models::ApplicationGatewayAuthenticationCertificate

Authentication 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.

name[RW]

@return [String] Name of the resource that is unique within a resource group. This name can be used to access the resource.

provisioning_state[RW]

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

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-09-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayAuthenticationCertificate',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayAuthenticationCertificate',
      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'
          }
        },
        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'
          }
        }
      }
    }
  }
end