Class: Azure::Network::Mgmt::V2016_03_30::Models::ApplicationGatewaySslCertificate

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb

Overview

SSL certificates of application gateway

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#dataString

Returns Gets or sets the certificate data.

Returns:

  • (String)

    Gets or sets the certificate data



16
17
18
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 16

def data
  @data
end

#etagString

resource is updated

Returns:

  • (String)

    A unique read-only string that changes whenever the



34
35
36
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 34

def etag
  @etag
end

#nameString

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

Returns:

  • (String)

    Gets name of the resource that is unique within a



30
31
32
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 30

def name
  @name
end

#passwordString

Returns Gets or sets the certificate password.

Returns:

  • (String)

    Gets or sets the certificate password



19
20
21
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 19

def password
  @password
end

#provisioning_stateString

resource Updating/Deleting/Failed

Returns:

  • (String)

    Gets or sets Provisioning state of the ssl certificate



26
27
28
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 26

def provisioning_state
  @provisioning_state
end

#public_cert_dataString

Returns Gets or sets the certificate public data.

Returns:

  • (String)

    Gets or sets the certificate public data



22
23
24
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 22

def public_cert_data
  @public_cert_data
end

Class Method Details

.mapperObject

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



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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 41

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewaySslCertificate',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewaySslCertificate',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        data: {
          required: false,
          serialized_name: 'properties.data',
          type: {
            name: 'String'
          }
        },
        password: {
          required: false,
          serialized_name: 'properties.password',
          type: {
            name: 'String'
          }
        },
        public_cert_data: {
          required: false,
          serialized_name: 'properties.publicCertData',
          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