Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Config for authentication with OAuth.
Instance Attribute Summary collapse
-
#client_id ⇒ String
Required.
-
#client_secret ⇒ String
Optional.
-
#oauth_grant_type ⇒ String
Required.
-
#scopes ⇒ Array<String>
Optional.
-
#secret_version_for_client_secret ⇒ String
Optional.
-
#token_endpoint ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig
constructor
A new instance of GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig
Returns a new instance of GoogleCloudDialogflowV2ToolAuthenticationOAuthConfig.
18939 18940 18941 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
Required. The client ID from the OAuth provider.
Corresponds to the JSON property clientId
18908 18909 18910 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18908 def client_id @client_id end |
#client_secret ⇒ String
Optional. The client secret from the OAuth provider. If the
secret_version_for_client_secret field is set, this field will be ignored.
Corresponds to the JSON property clientSecret
18914 18915 18916 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18914 def client_secret @client_secret end |
#oauth_grant_type ⇒ String
Required. OAuth grant types.
Corresponds to the JSON property oauthGrantType
18919 18920 18921 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18919 def oauth_grant_type @oauth_grant_type end |
#scopes ⇒ Array<String>
Optional. The OAuth scopes to grant.
Corresponds to the JSON property scopes
18924 18925 18926 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18924 def scopes @scopes end |
#secret_version_for_client_secret ⇒ String
Optional. The name of the SecretManager secret version resource storing the
client secret. If this field is set, the client_secret field will be ignored.
Format: projects/project/secrets/secret/versions/version`
Corresponds to the JSON propertysecretVersionForClientSecret`
18931 18932 18933 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18931 def secret_version_for_client_secret @secret_version_for_client_secret end |
#token_endpoint ⇒ String
Required. The token endpoint in the OAuth provider to exchange for an access
token.
Corresponds to the JSON property tokenEndpoint
18937 18938 18939 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18937 def token_endpoint @token_endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18944 18945 18946 18947 18948 18949 18950 18951 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18944 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @client_secret = args[:client_secret] if args.key?(:client_secret) @oauth_grant_type = args[:oauth_grant_type] if args.key?(:oauth_grant_type) @scopes = args[:scopes] if args.key?(:scopes) @secret_version_for_client_secret = args[:secret_version_for_client_secret] if args.key?(:secret_version_for_client_secret) @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint) end |