Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Stores information for third party applicationOAuth.
Instance Attribute Summary collapse
-
#app_name ⇒ String
Optional.
-
#instance_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig
Returns a new instance of GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfigThirdPartyOauthConfig.
10796 10797 10798 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10796 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_name ⇒ String
Optional. The type of the application. E.g., "jira", "box", etc.
Corresponds to the JSON property appName
10787 10788 10789 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10787 def app_name @app_name end |
#instance_name ⇒ String
Optional. The instance name identifying the 3P app, e.g., "vaissptbots-my".
This is different from the instance_uri which is the full URL of the 3P app e.
g., "https://vaissptbots-my.sharepoint.com".
Corresponds to the JSON property instanceName
10794 10795 10796 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10794 def instance_name @instance_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10801 10802 10803 10804 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10801 def update!(**args) @app_name = args[:app_name] if args.key?(:app_name) @instance_name = args[:instance_name] if args.key?(:instance_name) end |