Class: Azure::ApiManagement::Mgmt::V2016_07_07::Models::OAuth2AuthenticationSettingsContract
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2016_07_07::Models::OAuth2AuthenticationSettingsContract
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-07-07/generated/azure_mgmt_api_management/models/oauth2authentication_settings_contract.rb
Overview
API OAuth2 Authentication settings details.
Instance Attribute Summary collapse
-
#authorization_server_id ⇒ String
OAuth authorization server identifier.
-
#scope ⇒ String
Operations scope.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OAuth2AuthenticationSettingsContract class as Ruby Hash.
Instance Attribute Details
#authorization_server_id ⇒ String
Returns OAuth authorization server identifier.
16 17 18 |
# File 'lib/2016-07-07/generated/azure_mgmt_api_management/models/oauth2authentication_settings_contract.rb', line 16 def @authorization_server_id end |
#scope ⇒ String
Returns operations scope.
19 20 21 |
# File 'lib/2016-07-07/generated/azure_mgmt_api_management/models/oauth2authentication_settings_contract.rb', line 19 def scope @scope end |
Class Method Details
.mapper ⇒ Object
Mapper for OAuth2AuthenticationSettingsContract 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/2016-07-07/generated/azure_mgmt_api_management/models/oauth2authentication_settings_contract.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OAuth2AuthenticationSettingsContract', type: { name: 'Composite', class_name: 'OAuth2AuthenticationSettingsContract', model_properties: { authorization_server_id: { client_side_validation: true, required: false, serialized_name: 'authorizationServerId', type: { name: 'String' } }, scope: { client_side_validation: true, required: false, serialized_name: 'scope', type: { name: 'String' } } } } } end |