Class: Azure::ARM::Search::Models::AdminKeyResult

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_search/models/admin_key_result.rb

Overview

Response containing the primary and secondary API keys for a given Azure Search service.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#primary_keyString

Returns The primary API key of the Search service.

Returns:

  • (String)

    The primary API key of the Search service.



17
18
19
# File 'lib/generated/azure_mgmt_search/models/admin_key_result.rb', line 17

def primary_key
  @primary_key
end

#secondary_keyString

Returns The secondary API key of the Search service.

Returns:

  • (String)

    The secondary API key of the Search service.



20
21
22
# File 'lib/generated/azure_mgmt_search/models/admin_key_result.rb', line 20

def secondary_key
  @secondary_key
end

Class Method Details

.mapperObject

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



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/generated/azure_mgmt_search/models/admin_key_result.rb', line 27

def self.mapper()
  {
    required: false,
    serialized_name: 'AdminKeyResult',
    type: {
      name: 'Composite',
      class_name: 'AdminKeyResult',
      model_properties: {
        primary_key: {
          required: false,
          read_only: true,
          serialized_name: 'primaryKey',
          type: {
            name: 'String'
          }
        },
        secondary_key: {
          required: false,
          read_only: true,
          serialized_name: 'secondaryKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end