Class: Azure::Network::Mgmt::V2017_09_01::Models::ApplicationGatewaySslCertificate

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

Overview

SSL certificates of an application gateway.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#dataString

PUT Request.

Returns:

  • (String)

    Base-64 encoded pfx certificate. Only applicable in



17
18
19
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 17

def data
  @data
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



37
38
39
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 37

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



33
34
35
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 33

def name
  @name
end

#passwordString

applicable in PUT request.

Returns:

  • (String)

    Password for the pfx file specified in data. Only



21
22
23
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 21

def password
  @password
end

#provisioning_stateString

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

Returns:

  • (String)

    Provisioning state of the SSL certificate resource



29
30
31
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 29

def provisioning_state
  @provisioning_state
end

#public_cert_dataString

specified in data. Only applicable in GET request.

Returns:

  • (String)

    Base-64 encoded Public cert data corresponding to pfx



25
26
27
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 25

def public_cert_data
  @public_cert_data
end

#typeString

Returns Type of the resource.

Returns:

  • (String)

    Type of the resource.



40
41
42
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 40

def type
  @type
end

Class Method Details

.mapperObject

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



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
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb', line 47

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'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end