Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_keys.rb

Overview

Access keys for the web service calls.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#primaryString

Returns The primary access key.

Returns:

  • The primary access key.



16
17
18
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_keys.rb', line 16

def primary
  @primary
end

#secondaryString

Returns The secondary access key.

Returns:

  • The secondary access key.



19
20
21
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_keys.rb', line 19

def secondary
  @secondary
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_keys.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WebServiceKeys',
    type: {
      name: 'Composite',
      class_name: 'WebServiceKeys',
      model_properties: {
        primary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'primary',
          type: {
            name: 'String'
          }
        },
        secondary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'secondary',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end