class Azure::MachineLearningServices::Mgmt::V2019_05_01::Models::SslConfiguration
The ssl configuration for scoring
Attributes
cert[RW]
@return [String] Cert data
cname[RW]
@return [String] CNAME of the cert
key[RW]
@return [String] Key data
status[RW]
@return [Enum] Enable or disable ssl for scoring. Possible values include: 'Disabled', 'Enabled'
Private Class Methods
mapper()
click to toggle source
Mapper for SslConfiguration
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/ssl_configuration.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SslConfiguration', type: { name: 'Composite', class_name: 'SslConfiguration', model_properties: { status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, cert: { client_side_validation: true, required: false, serialized_name: 'cert', type: { name: 'String' } }, key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'String' } }, cname: { client_side_validation: true, required: false, serialized_name: 'cname', type: { name: 'String' } } } } } end