Class: Azure::ARM::Network::Models::ApplicationGatewaySslPredefinedPolicy
- Inherits:
-
MsRestAzure::SubResource
- Object
- MsRestAzure::SubResource
- Azure::ARM::Network::Models::ApplicationGatewaySslPredefinedPolicy
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb
Overview
An Ssl predefined policy
Instance Attribute Summary collapse
-
#cipher_suites ⇒ Array<ApplicationGatewaySslCipherSuite>
be enabled in the specified order for application gateway.
-
#min_protocol_version ⇒ ApplicationGatewaySslProtocol
to be supported on application gateway.
-
#name ⇒ String
Name of Ssl predefined policy.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewaySslPredefinedPolicy class as Ruby Hash.
Instance Attribute Details
#cipher_suites ⇒ Array<ApplicationGatewaySslCipherSuite>
be enabled in the specified order for application gateway.
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb', line 21 def cipher_suites @cipher_suites end |
#min_protocol_version ⇒ ApplicationGatewaySslProtocol
to be supported on application gateway. Possible values include: ‘TLSv1_0’, ‘TLSv1_1’, ‘TLSv1_2’
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb', line 26 def min_protocol_version @min_protocol_version end |
#name ⇒ String
Returns Name of Ssl predefined policy.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb', line 17 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewaySslPredefinedPolicy class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 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 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb', line 33 def self.mapper() { required: false, serialized_name: 'ApplicationGatewaySslPredefinedPolicy', type: { name: 'Composite', class_name: 'ApplicationGatewaySslPredefinedPolicy', model_properties: { id: { required: false, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, cipher_suites: { required: false, serialized_name: 'properties.cipherSuites', type: { name: 'Sequence', element: { required: false, serialized_name: 'ApplicationGatewaySslCipherSuiteElementType', type: { name: 'String' } } } }, min_protocol_version: { required: false, serialized_name: 'properties.minProtocolVersion', type: { name: 'String' } } } } } end |