Class: Google::Apis::ConnectorsV1::EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Parameters to support Oauth 2.0 Auth Code Grant Authentication using Google Provided OAuth Client. See https://tools.ietf.org/html/rfc6749#section-1.3.1 for more details.
Instance Attribute Summary collapse
-
#auth_code ⇒ String
Optional.
-
#oauth_token_data ⇒ Google::Apis::ConnectorsV1::OAuthTokenData
pass only at create and not update using updateMask Auth Code Data Corresponds to the JSON property
oauthTokenData. -
#redirect_uri ⇒ String
Optional.
-
#scopes ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged
constructor
A new instance of EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged
Returns a new instance of EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged.
2505 2506 2507 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_code ⇒ String
Optional. Authorization code to be exchanged for access and refresh tokens.
Corresponds to the JSON property authCode
2487 2488 2489 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2487 def auth_code @auth_code end |
#oauth_token_data ⇒ Google::Apis::ConnectorsV1::OAuthTokenData
pass only at create and not update using updateMask Auth Code Data
Corresponds to the JSON property oauthTokenData
2492 2493 2494 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2492 def oauth_token_data @oauth_token_data end |
#redirect_uri ⇒ String
Optional. Redirect URI to be provided during the auth code exchange.
Corresponds to the JSON property redirectUri
2497 2498 2499 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2497 def redirect_uri @redirect_uri end |
#scopes ⇒ Array<String>
Required. Scopes the connection will request when the user performs the auth
code flow.
Corresponds to the JSON property scopes
2503 2504 2505 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2503 def scopes @scopes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2510 2511 2512 2513 2514 2515 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2510 def update!(**args) @auth_code = args[:auth_code] if args.key?(:auth_code) @oauth_token_data = args[:oauth_token_data] if args.key?(:oauth_token_data) @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri) @scopes = args[:scopes] if args.key?(:scopes) end |