class Azure::MachineLearningServices::Mgmt::V2018_03_01_preview::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'

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-03-01-preview/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