Class: Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayTrustedRootCertificate
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayTrustedRootCertificate
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb
Overview
Trusted Root certificates of an application gateway.
Instance Attribute Summary collapse
-
#data ⇒ String
Certificate public data.
-
#etag ⇒ String
resource is updated.
-
#keyvault_secret_id ⇒ String
KeyVault Secret Id for certificate.
-
#name ⇒ String
within an Application Gateway.
-
#provisioning_state ⇒ String
resource.
-
#type ⇒ String
Type of the resource.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayTrustedRootCertificate class as Ruby Hash.
Instance Attribute Details
#data ⇒ String
Returns Certificate public data.
16 17 18 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 16 def data @data end |
#etag ⇒ String
resource is updated.
31 32 33 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 31 def etag @etag end |
#keyvault_secret_id ⇒ String
Returns KeyVault Secret Id for certificate.
19 20 21 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 19 def keyvault_secret_id @keyvault_secret_id end |
#name ⇒ String
within an Application Gateway.
27 28 29 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 27 def name @name end |
#provisioning_state ⇒ String
resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
23 24 25 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 23 def provisioning_state @provisioning_state end |
#type ⇒ String
Returns Type of the resource.
34 35 36 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 34 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayTrustedRootCertificate 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 102 103 104 105 106 107 108 109 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/application_gateway_trusted_root_certificate.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayTrustedRootCertificate', type: { name: 'Composite', class_name: 'ApplicationGatewayTrustedRootCertificate', 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' } }, keyvault_secret_id: { client_side_validation: true, required: false, serialized_name: 'properties.keyvaultSecretId', 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' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |