Class: Azure::ApiManagement::Mgmt::V2018_06_01_preview::Models::OpenidConnectProviderUpdateContract

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb

Overview

Parameters supplied to the Update OpenID Connect Provider operation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#client_idString

application.

Returns:

  • (String)

    Client ID of developer console which is the client



26
27
28
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 26

def client_id
  @client_id
end

#client_secretString

application.

Returns:

  • (String)

    Client Secret of developer console which is the client



30
31
32
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 30

def client_secret
  @client_secret
end

#descriptionString

Returns User-friendly description of OpenID Connect Provider.

Returns:

  • (String)

    User-friendly description of OpenID Connect Provider.



19
20
21
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 19

def description
  @description
end

#display_nameString

Returns User-friendly OpenID Connect Provider name.

Returns:

  • (String)

    User-friendly OpenID Connect Provider name.



16
17
18
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 16

def display_name
  @display_name
end

#metadata_endpointString

Returns Metadata endpoint URI.

Returns:

  • (String)

    Metadata endpoint URI.



22
23
24
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 22

def 
  
end

Class Method Details

.mapperObject

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



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
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/openid_connect_provider_update_contract.rb', line 37

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OpenidConnectProviderUpdateContract',
    type: {
      name: 'Composite',
      class_name: 'OpenidConnectProviderUpdateContract',
      model_properties: {
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.displayName',
          constraints: {
            MaxLength: 50
          },
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        metadata_endpoint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.metadataEndpoint',
          type: {
            name: 'String'
          }
        },
        client_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.clientId',
          type: {
            name: 'String'
          }
        },
        client_secret: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.clientSecret',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end