Class: Azure::Network::Mgmt::V2017_03_01::Models::ApplicationGatewayAuthenticationCertificate

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb

Overview

Authentication certificates of an application gateway.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#dataString

Returns Certificate public data.

Returns:

  • (String)

    Certificate public data.



16
17
18
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb', line 16

def data
  @data
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



28
29
30
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb', line 28

def etag
  @etag
end

#nameString

group. This name can be used to access the resource.

Returns:

  • (String)

    Name of the resource that is unique within a resource



24
25
26
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb', line 24

def name
  @name
end

#provisioning_stateString

resource. Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.

Returns:

  • (String)

    Provisioning state of the authentication certificate



20
21
22
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb', line 20

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

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



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb', line 36

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayAuthenticationCertificate',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayAuthenticationCertificate',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        data: {
          required: false,
          serialized_name: 'properties.data',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end