Class: DatadogAPIClient::V2::OAuthClientRegistrationResponse
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::OAuthClientRegistrationResponse
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb
Overview
Response payload for a successful OAuth2 dynamic client registration as defined by RFC 7591.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#client_id ⇒ Object
readonly
Unique identifier assigned to the registered client.
-
#client_name ⇒ Object
readonly
Human-readable name of the client.
-
#grant_types ⇒ Object
readonly
OAuth 2.0 grant types registered for the client.
-
#redirect_uris ⇒ Object
readonly
Redirection URIs registered for the client.
-
#response_types ⇒ Object
readonly
OAuth 2.0 response types registered for the client.
-
#token_endpoint_auth_method ⇒ Object
readonly
Authentication method registered for the token endpoint.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
42 43 44 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 42 def additional_properties @additional_properties end |
#client_id ⇒ Object
Unique identifier assigned to the registered client.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 25 def client_id @client_id end |
#client_name ⇒ Object
Human-readable name of the client.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 28 def client_name @client_name end |
#grant_types ⇒ Object
OAuth 2.0 grant types registered for the client.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 31 def grant_types @grant_types end |
#redirect_uris ⇒ Object
Redirection URIs registered for the client.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 34 def redirect_uris @redirect_uris end |
#response_types ⇒ Object
OAuth 2.0 response types registered for the client.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 37 def response_types @response_types end |
#token_endpoint_auth_method ⇒ Object
Authentication method registered for the token endpoint. Always none.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 40 def token_endpoint_auth_method @token_endpoint_auth_method end |