Class: Azure::ARM::Network::Models::VpnClientRevokedCertificate

Inherits:
MsRestAzure::SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb

Overview

VPN client revoked certificate of virtual network gateway.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



29
30
31
# File 'lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb', line 29

def etag
  @etag
end

#nameString

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

Returns:

  • (String)

    The name of the resource that is unique within a



25
26
27
# File 'lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb', line 25

def name
  @name
end

#provisioning_stateString

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

Returns:

  • (String)

    The provisioning state of the VPN client revoked



21
22
23
# File 'lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb', line 21

def provisioning_state
  @provisioning_state
end

#thumbprintString

Returns The revoked VPN client certificate thumbprint.

Returns:

  • (String)

    The revoked VPN client certificate thumbprint.



16
17
18
# File 'lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb', line 16

def thumbprint
  @thumbprint
end

Class Method Details

.mapperObject

Mapper for VpnClientRevokedCertificate 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
83
# File 'lib/generated/azure_mgmt_network/models/vpn_client_revoked_certificate.rb', line 36

def self.mapper()
  {
    required: false,
    serialized_name: 'VpnClientRevokedCertificate',
    type: {
      name: 'Composite',
      class_name: 'VpnClientRevokedCertificate',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        thumbprint: {
          required: false,
          serialized_name: 'properties.thumbprint',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          required: false,
          read_only: true,
          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