google-apis-discoveryengine_v1alpha 0.80.0 → 0.82.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3467,6 +3467,11 @@ module Google
3467
3467
  # @return [String]
3468
3468
  attr_accessor :configurable_billing_approach
3469
3469
 
3470
+ # Output only. The timestamp when configurable_billing_approach was last updated.
3471
+ # Corresponds to the JSON property `configurableBillingApproachUpdateTime`
3472
+ # @return [String]
3473
+ attr_accessor :configurable_billing_approach_update_time
3474
+
3470
3475
  # Immutable. The content config of the data store. If this field is unset, the
3471
3476
  # server behavior defaults to ContentConfig.NO_CONTENT.
3472
3477
  # Corresponds to the JSON property `contentConfig`
@@ -3571,6 +3576,7 @@ module Google
3571
3576
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
3572
3577
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
3573
3578
  @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
3579
+ @configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
3574
3580
  @content_config = args[:content_config] if args.key?(:content_config)
3575
3581
  @create_time = args[:create_time] if args.key?(:create_time)
3576
3582
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -5260,6 +5266,16 @@ module Google
5260
5266
  class GoogleCloudDiscoveryengineV1Project
5261
5267
  include Google::Apis::Core::Hashable
5262
5268
 
5269
+ # Represents the currently effective configurable billing parameters. These
5270
+ # values are derived from the customer's subscription history stored internally
5271
+ # and reflect the thresholds actively being used for billing purposes at the
5272
+ # time of the GetProject call. This includes the start_time of the subscription
5273
+ # and may differ from the values in `customer_provided_config` due to billing
5274
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
5275
+ # Corresponds to the JSON property `configurableBillingStatus`
5276
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus]
5277
+ attr_accessor :configurable_billing_status
5278
+
5263
5279
  # Output only. The timestamp when this project is created.
5264
5280
  # Corresponds to the JSON property `createTime`
5265
5281
  # @return [String]
@@ -5294,6 +5310,7 @@ module Google
5294
5310
 
5295
5311
  # Update properties of this object
5296
5312
  def update!(**args)
5313
+ @configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
5297
5314
  @create_time = args[:create_time] if args.key?(:create_time)
5298
5315
  @customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
5299
5316
  @name = args[:name] if args.key?(:name)
@@ -5302,6 +5319,46 @@ module Google
5302
5319
  end
5303
5320
  end
5304
5321
 
5322
+ # Represents the currently effective configurable billing parameters. These
5323
+ # values are derived from the customer's subscription history stored internally
5324
+ # and reflect the thresholds actively being used for billing purposes at the
5325
+ # time of the GetProject call. This includes the start_time of the subscription
5326
+ # and may differ from the values in `customer_provided_config` due to billing
5327
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
5328
+ class GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus
5329
+ include Google::Apis::Core::Hashable
5330
+
5331
+ # Optional. The currently effective Indexing Core threshold. This is the
5332
+ # threshold against which Indexing Core usage is compared for overage
5333
+ # calculations.
5334
+ # Corresponds to the JSON property `effectiveIndexingCoreThreshold`
5335
+ # @return [Fixnum]
5336
+ attr_accessor :effective_indexing_core_threshold
5337
+
5338
+ # Optional. The currently effective Search QPM threshold in queries per minute.
5339
+ # This is the threshold against which QPM usage is compared for overage
5340
+ # calculations.
5341
+ # Corresponds to the JSON property `effectiveSearchQpmThreshold`
5342
+ # @return [Fixnum]
5343
+ attr_accessor :effective_search_qpm_threshold
5344
+
5345
+ # Optional. The start time of the currently active billing subscription.
5346
+ # Corresponds to the JSON property `startTime`
5347
+ # @return [String]
5348
+ attr_accessor :start_time
5349
+
5350
+ def initialize(**args)
5351
+ update!(**args)
5352
+ end
5353
+
5354
+ # Update properties of this object
5355
+ def update!(**args)
5356
+ @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
5357
+ @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
5358
+ @start_time = args[:start_time] if args.key?(:start_time)
5359
+ end
5360
+ end
5361
+
5305
5362
  # Customer provided configurations.
5306
5363
  class GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfig
5307
5364
  include Google::Apis::Core::Hashable
@@ -5331,6 +5388,13 @@ module Google
5331
5388
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
5332
5389
  attr_accessor :model_armor_config
5333
5390
 
5391
+ # Optional. Whether to disable the notebook sharing feature for the project.
5392
+ # Default to false if not specified.
5393
+ # Corresponds to the JSON property `optOutNotebookSharing`
5394
+ # @return [Boolean]
5395
+ attr_accessor :opt_out_notebook_sharing
5396
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
5397
+
5334
5398
  def initialize(**args)
5335
5399
  update!(**args)
5336
5400
  end
@@ -5338,6 +5402,7 @@ module Google
5338
5402
  # Update properties of this object
5339
5403
  def update!(**args)
5340
5404
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
5405
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
5341
5406
  end
5342
5407
  end
5343
5408
 
@@ -6785,6 +6850,62 @@ module Google
6785
6850
  end
6786
6851
  end
6787
6852
 
6853
+ # Configures metadata that is used for End User entities.
6854
+ class GoogleCloudDiscoveryengineV1UserStore
6855
+ include Google::Apis::Core::Hashable
6856
+
6857
+ # Optional. The default subscription LicenseConfig for the UserStore, if
6858
+ # UserStore.enable_license_auto_register is true, new users will automatically
6859
+ # register under the default subscription. If default LicenseConfig doesn't have
6860
+ # remaining license seats left, new users will not be assigned with license and
6861
+ # will be blocked for Vertex AI Search features. This is used if `
6862
+ # license_assignment_tier_rules` is not configured.
6863
+ # Corresponds to the JSON property `defaultLicenseConfig`
6864
+ # @return [String]
6865
+ attr_accessor :default_license_config
6866
+
6867
+ # The display name of the User Store.
6868
+ # Corresponds to the JSON property `displayName`
6869
+ # @return [String]
6870
+ attr_accessor :display_name
6871
+
6872
+ # Optional. Whether to enable license auto update for users in this User Store.
6873
+ # If true, users with expired licenses will automatically be updated to use the
6874
+ # default license config as long as the default license config has seats left.
6875
+ # Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
6876
+ # @return [Boolean]
6877
+ attr_accessor :enable_expired_license_auto_update
6878
+ alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
6879
+
6880
+ # Optional. Whether to enable license auto register for users in this User Store.
6881
+ # If true, new users will automatically register under the default license
6882
+ # config as long as the default license config has seats left.
6883
+ # Corresponds to the JSON property `enableLicenseAutoRegister`
6884
+ # @return [Boolean]
6885
+ attr_accessor :enable_license_auto_register
6886
+ alias_method :enable_license_auto_register?, :enable_license_auto_register
6887
+
6888
+ # Immutable. The full resource name of the User Store, in the format of `
6889
+ # projects/`project`/locations/`location`/userStores/`user_store``. This field
6890
+ # must be a UTF-8 encoded string with a length limit of 1024 characters.
6891
+ # Corresponds to the JSON property `name`
6892
+ # @return [String]
6893
+ attr_accessor :name
6894
+
6895
+ def initialize(**args)
6896
+ update!(**args)
6897
+ end
6898
+
6899
+ # Update properties of this object
6900
+ def update!(**args)
6901
+ @default_license_config = args[:default_license_config] if args.key?(:default_license_config)
6902
+ @display_name = args[:display_name] if args.key?(:display_name)
6903
+ @enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
6904
+ @enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
6905
+ @name = args[:name] if args.key?(:name)
6906
+ end
6907
+ end
6908
+
6788
6909
  # Config to store data store type configuration for workspace data
6789
6910
  class GoogleCloudDiscoveryengineV1WorkspaceConfig
6790
6911
  include Google::Apis::Core::Hashable
@@ -6826,6 +6947,25 @@ module Google
6826
6947
  end
6827
6948
  end
6828
6949
 
6950
+ # Stored definition of an agent that uses A2A.
6951
+ class GoogleCloudDiscoveryengineV1alphaA2AAgentDefinition
6952
+ include Google::Apis::Core::Hashable
6953
+
6954
+ # Optional. The agent card is a JSON string.
6955
+ # Corresponds to the JSON property `jsonAgentCard`
6956
+ # @return [String]
6957
+ attr_accessor :json_agent_card
6958
+
6959
+ def initialize(**args)
6960
+ update!(**args)
6961
+ end
6962
+
6963
+ # Update properties of this object
6964
+ def update!(**args)
6965
+ @json_agent_card = args[:json_agent_card] if args.key?(:json_agent_card)
6966
+ end
6967
+ end
6968
+
6829
6969
  # Access Control Configuration.
6830
6970
  class GoogleCloudDiscoveryengineV1alphaAclConfig
6831
6971
  include Google::Apis::Core::Hashable
@@ -6941,6 +7081,52 @@ module Google
6941
7081
  end
6942
7082
  end
6943
7083
 
7084
+ # Stores the definition of an agent that uses ADK and is deployed to Agent
7085
+ # Engine (formerly known as Reasoning Engine).
7086
+ class GoogleCloudDiscoveryengineV1alphaAdkAgentDefinition
7087
+ include Google::Apis::Core::Hashable
7088
+
7089
+ # Keeps track of the reasoning engine that the agent is connected to. This
7090
+ # message is not intended to keep track of agent's lifecycle. Instead it is only
7091
+ # used to define parameters to connect to the agent that is already deployed to
7092
+ # a reasoning engine.
7093
+ # Corresponds to the JSON property `provisionedReasoningEngine`
7094
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdkAgentDefinitionProvisionedReasoningEngine]
7095
+ attr_accessor :provisioned_reasoning_engine
7096
+
7097
+ def initialize(**args)
7098
+ update!(**args)
7099
+ end
7100
+
7101
+ # Update properties of this object
7102
+ def update!(**args)
7103
+ @provisioned_reasoning_engine = args[:provisioned_reasoning_engine] if args.key?(:provisioned_reasoning_engine)
7104
+ end
7105
+ end
7106
+
7107
+ # Keeps track of the reasoning engine that the agent is connected to. This
7108
+ # message is not intended to keep track of agent's lifecycle. Instead it is only
7109
+ # used to define parameters to connect to the agent that is already deployed to
7110
+ # a reasoning engine.
7111
+ class GoogleCloudDiscoveryengineV1alphaAdkAgentDefinitionProvisionedReasoningEngine
7112
+ include Google::Apis::Core::Hashable
7113
+
7114
+ # Required. The reasoning engine that the agent is connected to. Format: `
7115
+ # projects/`project`/locations/`location`/reasoningEngines/`reasoning_engine``
7116
+ # Corresponds to the JSON property `reasoningEngine`
7117
+ # @return [String]
7118
+ attr_accessor :reasoning_engine
7119
+
7120
+ def initialize(**args)
7121
+ update!(**args)
7122
+ end
7123
+
7124
+ # Update properties of this object
7125
+ def update!(**args)
7126
+ @reasoning_engine = args[:reasoning_engine] if args.key?(:reasoning_engine)
7127
+ end
7128
+ end
7129
+
6944
7130
  # Request message for CompletionService.AdvancedCompleteQuery method. .
6945
7131
  class GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequest
6946
7132
  include Google::Apis::Core::Hashable
@@ -7004,9 +7190,9 @@ module Google
7004
7190
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserInfo]
7005
7191
  attr_accessor :user_info
7006
7192
 
7007
- # A unique identifier for tracking visitors. For example, this could be
7008
- # implemented with an HTTP cookie, which should be able to uniquely identify a
7009
- # visitor on a single device. This unique identifier should not change if the
7193
+ # Optional. A unique identifier for tracking visitors. For example, this could
7194
+ # be implemented with an HTTP cookie, which should be able to uniquely identify
7195
+ # a visitor on a single device. This unique identifier should not change if the
7010
7196
  # visitor logs in or out of the website. This field should NOT have a fixed
7011
7197
  # value such as `unknown_visitor`. This should be the same identifier as
7012
7198
  # UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id. The field must be a
@@ -7373,6 +7559,210 @@ module Google
7373
7559
  end
7374
7560
  end
7375
7561
 
7562
+ # Performs a predefined, specific task.
7563
+ class GoogleCloudDiscoveryengineV1alphaAgent
7564
+ include Google::Apis::Core::Hashable
7565
+
7566
+ # Stored definition of an agent that uses A2A.
7567
+ # Corresponds to the JSON property `a2aAgentDefinition`
7568
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaA2AAgentDefinition]
7569
+ attr_accessor :a2a_agent_definition
7570
+
7571
+ # Stores the definition of an agent that uses ADK and is deployed to Agent
7572
+ # Engine (formerly known as Reasoning Engine).
7573
+ # Corresponds to the JSON property `adkAgentDefinition`
7574
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdkAgentDefinition]
7575
+ attr_accessor :adk_agent_definition
7576
+
7577
+ # Describes the authorizations required.
7578
+ # Corresponds to the JSON property `authorizationConfig`
7579
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAuthorizationConfig]
7580
+ attr_accessor :authorization_config
7581
+
7582
+ # Output only. Timestamp when this Agent was created.
7583
+ # Corresponds to the JSON property `createTime`
7584
+ # @return [String]
7585
+ attr_accessor :create_time
7586
+
7587
+ # Optional. The custom placeholder text that appears in the text box before the
7588
+ # user enters any text.
7589
+ # Corresponds to the JSON property `customPlaceholderText`
7590
+ # @return [String]
7591
+ attr_accessor :custom_placeholder_text
7592
+
7593
+ # Output only. The reason why the agent deployment failed. Only set if the state
7594
+ # is DEPLOYMENT_FAILED.
7595
+ # Corresponds to the JSON property `deploymentFailureReason`
7596
+ # @return [String]
7597
+ attr_accessor :deployment_failure_reason
7598
+
7599
+ # Required. Human-readable description of the agent. This might be used by an
7600
+ # LLM to automatically select an agent to respond to a user query.
7601
+ # Corresponds to the JSON property `description`
7602
+ # @return [String]
7603
+ attr_accessor :description
7604
+
7605
+ # Stored definition of an agent that uses a Dialogflow agent.
7606
+ # Corresponds to the JSON property `dialogflowAgentDefinition`
7607
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDialogflowAgentDefinition]
7608
+ attr_accessor :dialogflow_agent_definition
7609
+
7610
+ # Required. Display name of the agent. This might be used by an LLM to
7611
+ # automatically select an agent to respond to a user query.
7612
+ # Corresponds to the JSON property `displayName`
7613
+ # @return [String]
7614
+ attr_accessor :display_name
7615
+
7616
+ # Represents an image.
7617
+ # Corresponds to the JSON property `icon`
7618
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentImage]
7619
+ attr_accessor :icon
7620
+
7621
+ # Optional. The code of the language of the text in the description,
7622
+ # display_name and starter_prompts fields.
7623
+ # Corresponds to the JSON property `languageCode`
7624
+ # @return [String]
7625
+ attr_accessor :language_code
7626
+
7627
+ # Identifier. Resource name of the agent. Format: `projects/`project`/locations/`
7628
+ # location`/collections/`collection`/engines/`engine`/assistants/`assistant`/
7629
+ # agents/`agent``
7630
+ # Corresponds to the JSON property `name`
7631
+ # @return [String]
7632
+ attr_accessor :name
7633
+
7634
+ # Output only. The reason why the agent was rejected. Only set if the state is
7635
+ # PRIVATE, and got there via rejection.
7636
+ # Corresponds to the JSON property `rejectionReason`
7637
+ # @return [String]
7638
+ attr_accessor :rejection_reason
7639
+
7640
+ # Optional. The starter prompt suggestions to show the user on the landing page
7641
+ # of the agent.
7642
+ # Corresponds to the JSON property `starterPrompts`
7643
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentStarterPrompt>]
7644
+ attr_accessor :starter_prompts
7645
+
7646
+ # Output only. The lifecycle state of the agent.
7647
+ # Corresponds to the JSON property `state`
7648
+ # @return [String]
7649
+ attr_accessor :state
7650
+
7651
+ # Output only. The reason why the agent was suspended. Only set if the state is
7652
+ # SUSPENDED.
7653
+ # Corresponds to the JSON property `suspensionReason`
7654
+ # @return [String]
7655
+ attr_accessor :suspension_reason
7656
+
7657
+ # Output only. Timestamp when this Agent was most recently updated.
7658
+ # Corresponds to the JSON property `updateTime`
7659
+ # @return [String]
7660
+ attr_accessor :update_time
7661
+
7662
+ def initialize(**args)
7663
+ update!(**args)
7664
+ end
7665
+
7666
+ # Update properties of this object
7667
+ def update!(**args)
7668
+ @a2a_agent_definition = args[:a2a_agent_definition] if args.key?(:a2a_agent_definition)
7669
+ @adk_agent_definition = args[:adk_agent_definition] if args.key?(:adk_agent_definition)
7670
+ @authorization_config = args[:authorization_config] if args.key?(:authorization_config)
7671
+ @create_time = args[:create_time] if args.key?(:create_time)
7672
+ @custom_placeholder_text = args[:custom_placeholder_text] if args.key?(:custom_placeholder_text)
7673
+ @deployment_failure_reason = args[:deployment_failure_reason] if args.key?(:deployment_failure_reason)
7674
+ @description = args[:description] if args.key?(:description)
7675
+ @dialogflow_agent_definition = args[:dialogflow_agent_definition] if args.key?(:dialogflow_agent_definition)
7676
+ @display_name = args[:display_name] if args.key?(:display_name)
7677
+ @icon = args[:icon] if args.key?(:icon)
7678
+ @language_code = args[:language_code] if args.key?(:language_code)
7679
+ @name = args[:name] if args.key?(:name)
7680
+ @rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
7681
+ @starter_prompts = args[:starter_prompts] if args.key?(:starter_prompts)
7682
+ @state = args[:state] if args.key?(:state)
7683
+ @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
7684
+ @update_time = args[:update_time] if args.key?(:update_time)
7685
+ end
7686
+ end
7687
+
7688
+ # Describes a file used internally by an agent as a context on each invocation.
7689
+ class GoogleCloudDiscoveryengineV1alphaAgentFile
7690
+ include Google::Apis::Core::Hashable
7691
+
7692
+ # Required. The name of the file.
7693
+ # Corresponds to the JSON property `fileName`
7694
+ # @return [String]
7695
+ attr_accessor :file_name
7696
+
7697
+ # Immutable. The content type of the file.
7698
+ # Corresponds to the JSON property `mimeType`
7699
+ # @return [String]
7700
+ attr_accessor :mime_type
7701
+
7702
+ # Identifier. The resource name of the file. Format: `projects/`project`/
7703
+ # locations/`location`/collections/`collection`/engines/`engine`/assistants/`
7704
+ # assistant`/agents/`agent`/files/`file``
7705
+ # Corresponds to the JSON property `name`
7706
+ # @return [String]
7707
+ attr_accessor :name
7708
+
7709
+ def initialize(**args)
7710
+ update!(**args)
7711
+ end
7712
+
7713
+ # Update properties of this object
7714
+ def update!(**args)
7715
+ @file_name = args[:file_name] if args.key?(:file_name)
7716
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
7717
+ @name = args[:name] if args.key?(:name)
7718
+ end
7719
+ end
7720
+
7721
+ # Represents an image.
7722
+ class GoogleCloudDiscoveryengineV1alphaAgentImage
7723
+ include Google::Apis::Core::Hashable
7724
+
7725
+ # Base64-encoded image file contents.
7726
+ # Corresponds to the JSON property `content`
7727
+ # @return [String]
7728
+ attr_accessor :content
7729
+
7730
+ # Image URI.
7731
+ # Corresponds to the JSON property `uri`
7732
+ # @return [String]
7733
+ attr_accessor :uri
7734
+
7735
+ def initialize(**args)
7736
+ update!(**args)
7737
+ end
7738
+
7739
+ # Update properties of this object
7740
+ def update!(**args)
7741
+ @content = args[:content] if args.key?(:content)
7742
+ @uri = args[:uri] if args.key?(:uri)
7743
+ end
7744
+ end
7745
+
7746
+ # The starter prompt suggestion to show the user on the landing page of the
7747
+ # agent.
7748
+ class GoogleCloudDiscoveryengineV1alphaAgentStarterPrompt
7749
+ include Google::Apis::Core::Hashable
7750
+
7751
+ # Required. The text of the starter prompt.
7752
+ # Corresponds to the JSON property `text`
7753
+ # @return [String]
7754
+ attr_accessor :text
7755
+
7756
+ def initialize(**args)
7757
+ update!(**args)
7758
+ end
7759
+
7760
+ # Update properties of this object
7761
+ def update!(**args)
7762
+ @text = args[:text] if args.key?(:text)
7763
+ end
7764
+ end
7765
+
7376
7766
  # The connector level alert config.
7377
7767
  class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig
7378
7768
  include Google::Apis::Core::Hashable
@@ -10109,6 +10499,117 @@ module Google
10109
10499
  end
10110
10500
  end
10111
10501
 
10502
+ # Discovery Engine Authorization resource.
10503
+ class GoogleCloudDiscoveryengineV1alphaAuthorization
10504
+ include Google::Apis::Core::Hashable
10505
+
10506
+ # Required. The display name of the authorization. It must be a UTF-8 encoded
10507
+ # string with a length limit of 128 characters.
10508
+ # Corresponds to the JSON property `displayName`
10509
+ # @return [String]
10510
+ attr_accessor :display_name
10511
+
10512
+ # Identifier. Resource name of the authorization. Format: `projects/`project`/
10513
+ # locations/`location`/authorizations/`authorization`` It must be a UTF-8
10514
+ # encoded string with a length limit of 1024 characters.
10515
+ # Corresponds to the JSON property `name`
10516
+ # @return [String]
10517
+ attr_accessor :name
10518
+
10519
+ # OAuth2 configuration.
10520
+ # Corresponds to the JSON property `serverSideOauth2`
10521
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAuthorizationServerSideOAuth2]
10522
+ attr_accessor :server_side_oauth2
10523
+
10524
+ def initialize(**args)
10525
+ update!(**args)
10526
+ end
10527
+
10528
+ # Update properties of this object
10529
+ def update!(**args)
10530
+ @display_name = args[:display_name] if args.key?(:display_name)
10531
+ @name = args[:name] if args.key?(:name)
10532
+ @server_side_oauth2 = args[:server_side_oauth2] if args.key?(:server_side_oauth2)
10533
+ end
10534
+ end
10535
+
10536
+ # Describes the authorizations required.
10537
+ class GoogleCloudDiscoveryengineV1alphaAuthorizationConfig
10538
+ include Google::Apis::Core::Hashable
10539
+
10540
+ # Optional. The authorization that is required to invoke the agent. Auth tokens
10541
+ # will be passed to the agent as part of the request auth header.
10542
+ # Corresponds to the JSON property `agentAuthorization`
10543
+ # @return [String]
10544
+ attr_accessor :agent_authorization
10545
+
10546
+ # Optional. List of required authorizations for agent to access other resources.
10547
+ # Auth tokens will be passed to the agent as part of the request body.
10548
+ # Corresponds to the JSON property `toolAuthorizations`
10549
+ # @return [Array<String>]
10550
+ attr_accessor :tool_authorizations
10551
+
10552
+ def initialize(**args)
10553
+ update!(**args)
10554
+ end
10555
+
10556
+ # Update properties of this object
10557
+ def update!(**args)
10558
+ @agent_authorization = args[:agent_authorization] if args.key?(:agent_authorization)
10559
+ @tool_authorizations = args[:tool_authorizations] if args.key?(:tool_authorizations)
10560
+ end
10561
+ end
10562
+
10563
+ # OAuth2 configuration.
10564
+ class GoogleCloudDiscoveryengineV1alphaAuthorizationServerSideOAuth2
10565
+ include Google::Apis::Core::Hashable
10566
+
10567
+ # Required. The URI the user is directed to when they need to authorize. Should
10568
+ # include everything required for a successful authorization: OAuth ID, extra
10569
+ # flags, etc. Example: `https://accounts.google.com/o/oauth2/v2/auth?client_id=
10570
+ # OAUTH_ID&scope=https://www.googleapis.com/auth/calendar.events&response_type=
10571
+ # code&access_type=offline&prompt=consent` The `redirect_uri` parameter will be
10572
+ # overwritten by the Vertex AI Search frontend.
10573
+ # Corresponds to the JSON property `authorizationUri`
10574
+ # @return [String]
10575
+ attr_accessor :authorization_uri
10576
+
10577
+ # Required. The OAuth2 client ID.
10578
+ # Corresponds to the JSON property `clientId`
10579
+ # @return [String]
10580
+ attr_accessor :client_id
10581
+
10582
+ # Required. The OAuth2 client secret. Encrypted at rest.
10583
+ # Corresponds to the JSON property `clientSecret`
10584
+ # @return [String]
10585
+ attr_accessor :client_secret
10586
+
10587
+ # Required. The scopes to request. Example: `https://www.googleapis.com/auth/
10588
+ # calendar.events`
10589
+ # Corresponds to the JSON property `scopes`
10590
+ # @return [Array<String>]
10591
+ attr_accessor :scopes
10592
+
10593
+ # Required. The HTTP endpoint that exchanges a client authorization for an
10594
+ # access token.
10595
+ # Corresponds to the JSON property `tokenUri`
10596
+ # @return [String]
10597
+ attr_accessor :token_uri
10598
+
10599
+ def initialize(**args)
10600
+ update!(**args)
10601
+ end
10602
+
10603
+ # Update properties of this object
10604
+ def update!(**args)
10605
+ @authorization_uri = args[:authorization_uri] if args.key?(:authorization_uri)
10606
+ @client_id = args[:client_id] if args.key?(:client_id)
10607
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
10608
+ @scopes = args[:scopes] if args.key?(:scopes)
10609
+ @token_uri = args[:token_uri] if args.key?(:token_uri)
10610
+ end
10611
+ end
10612
+
10112
10613
  # The configuration for the BAP connector.
10113
10614
  class GoogleCloudDiscoveryengineV1alphaBapConfig
10114
10615
  include Google::Apis::Core::Hashable
@@ -10633,30 +11134,299 @@ module Google
10633
11134
  end
10634
11135
  end
10635
11136
 
10636
- # The Cloud Bigtable source for importing data.
10637
- class GoogleCloudDiscoveryengineV1alphaBigtableSource
11137
+ # The Cloud Bigtable source for importing data.
11138
+ class GoogleCloudDiscoveryengineV1alphaBigtableSource
11139
+ include Google::Apis::Core::Hashable
11140
+
11141
+ # The Bigtable Options object that contains information to support the import.
11142
+ # Corresponds to the JSON property `bigtableOptions`
11143
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptions]
11144
+ attr_accessor :bigtable_options
11145
+
11146
+ # Required. The instance ID of the Cloud Bigtable that needs to be imported.
11147
+ # Corresponds to the JSON property `instanceId`
11148
+ # @return [String]
11149
+ attr_accessor :instance_id
11150
+
11151
+ # The project ID that contains the Bigtable source. Has a length limit of 128
11152
+ # characters. If not specified, inherits the project ID from the parent request.
11153
+ # Corresponds to the JSON property `projectId`
11154
+ # @return [String]
11155
+ attr_accessor :project_id
11156
+
11157
+ # Required. The table ID of the Cloud Bigtable that needs to be imported.
11158
+ # Corresponds to the JSON property `tableId`
11159
+ # @return [String]
11160
+ attr_accessor :table_id
11161
+
11162
+ def initialize(**args)
11163
+ update!(**args)
11164
+ end
11165
+
11166
+ # Update properties of this object
11167
+ def update!(**args)
11168
+ @bigtable_options = args[:bigtable_options] if args.key?(:bigtable_options)
11169
+ @instance_id = args[:instance_id] if args.key?(:instance_id)
11170
+ @project_id = args[:project_id] if args.key?(:project_id)
11171
+ @table_id = args[:table_id] if args.key?(:table_id)
11172
+ end
11173
+ end
11174
+
11175
+ # Information about license configs at billing account level.
11176
+ class GoogleCloudDiscoveryengineV1alphaBillingAccountLicenseConfig
11177
+ include Google::Apis::Core::Hashable
11178
+
11179
+ # Whether the BillingAccountLicenseConfig is auto renewed when it reaches the
11180
+ # end date.
11181
+ # Corresponds to the JSON property `autoRenew`
11182
+ # @return [Boolean]
11183
+ attr_accessor :auto_renew
11184
+ alias_method :auto_renew?, :auto_renew
11185
+
11186
+ # Represents a whole or partial calendar date, such as a birthday. The time of
11187
+ # day and time zone are either specified elsewhere or are insignificant. The
11188
+ # date is relative to the Gregorian Calendar. This can represent one of the
11189
+ # following: * A full date, with non-zero year, month, and day values. * A month
11190
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
11191
+ # with a zero month and a zero day. * A year and month, with a zero day (for
11192
+ # example, a credit card expiration date). Related types: * google.type.
11193
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
11194
+ # Corresponds to the JSON property `endDate`
11195
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
11196
+ attr_accessor :end_date
11197
+
11198
+ # Whether the license config is for Gemini bundle.
11199
+ # Corresponds to the JSON property `geminiBundle`
11200
+ # @return [Boolean]
11201
+ attr_accessor :gemini_bundle
11202
+ alias_method :gemini_bundle?, :gemini_bundle
11203
+
11204
+ # A map of LicenseConfig names to the number of licenses distributed to each.
11205
+ # The key is the full resource name of the LicenseConfig, such as `projects/`
11206
+ # project`/locations/`location`/licenseConfigs/`license_config``. The value is
11207
+ # the count of licenses allocated to it.
11208
+ # Corresponds to the JSON property `licenseConfigDistributions`
11209
+ # @return [Hash<String,Fixnum>]
11210
+ attr_accessor :license_config_distributions
11211
+
11212
+ # Required. The number of licenses purchased under this billing account license
11213
+ # config.
11214
+ # Corresponds to the JSON property `licenseCount`
11215
+ # @return [Fixnum]
11216
+ attr_accessor :license_count
11217
+
11218
+ # Immutable. Identifier. The fully qualified resource name of the billing
11219
+ # account license config. Format: `billingAccounts/`billing_account`/
11220
+ # billingAccountLicenseConfigs/`billing_account_license_config``.
11221
+ # Corresponds to the JSON property `name`
11222
+ # @return [String]
11223
+ attr_accessor :name
11224
+
11225
+ # The procurement entitlement id of the subscription.
11226
+ # Corresponds to the JSON property `procurementEntitlementId`
11227
+ # @return [String]
11228
+ attr_accessor :procurement_entitlement_id
11229
+
11230
+ # Represents a whole or partial calendar date, such as a birthday. The time of
11231
+ # day and time zone are either specified elsewhere or are insignificant. The
11232
+ # date is relative to the Gregorian Calendar. This can represent one of the
11233
+ # following: * A full date, with non-zero year, month, and day values. * A month
11234
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
11235
+ # with a zero month and a zero day. * A year and month, with a zero day (for
11236
+ # example, a credit card expiration date). Related types: * google.type.
11237
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
11238
+ # Corresponds to the JSON property `startDate`
11239
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
11240
+ attr_accessor :start_date
11241
+
11242
+ # Output only. The state of the BillingAccountLicenseConfig.
11243
+ # Corresponds to the JSON property `state`
11244
+ # @return [String]
11245
+ attr_accessor :state
11246
+
11247
+ # The subscription display name.
11248
+ # Corresponds to the JSON property `subscriptionDisplayName`
11249
+ # @return [String]
11250
+ attr_accessor :subscription_display_name
11251
+
11252
+ # Output only. The corresponding SubV3 subscription name.
11253
+ # Corresponds to the JSON property `subscriptionName`
11254
+ # @return [String]
11255
+ attr_accessor :subscription_name
11256
+
11257
+ # Required. The subscription term.
11258
+ # Corresponds to the JSON property `subscriptionTerm`
11259
+ # @return [String]
11260
+ attr_accessor :subscription_term
11261
+
11262
+ # Required. The subscription tier.
11263
+ # Corresponds to the JSON property `subscriptionTier`
11264
+ # @return [String]
11265
+ attr_accessor :subscription_tier
11266
+
11267
+ def initialize(**args)
11268
+ update!(**args)
11269
+ end
11270
+
11271
+ # Update properties of this object
11272
+ def update!(**args)
11273
+ @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
11274
+ @end_date = args[:end_date] if args.key?(:end_date)
11275
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
11276
+ @license_config_distributions = args[:license_config_distributions] if args.key?(:license_config_distributions)
11277
+ @license_count = args[:license_count] if args.key?(:license_count)
11278
+ @name = args[:name] if args.key?(:name)
11279
+ @procurement_entitlement_id = args[:procurement_entitlement_id] if args.key?(:procurement_entitlement_id)
11280
+ @start_date = args[:start_date] if args.key?(:start_date)
11281
+ @state = args[:state] if args.key?(:state)
11282
+ @subscription_display_name = args[:subscription_display_name] if args.key?(:subscription_display_name)
11283
+ @subscription_name = args[:subscription_name] if args.key?(:subscription_name)
11284
+ @subscription_term = args[:subscription_term] if args.key?(:subscription_term)
11285
+ @subscription_tier = args[:subscription_tier] if args.key?(:subscription_tier)
11286
+ end
11287
+ end
11288
+
11289
+ # A data branch that stores Documents.
11290
+ class GoogleCloudDiscoveryengineV1alphaBranch
11291
+ include Google::Apis::Core::Hashable
11292
+
11293
+ # Statistics describing a branch.
11294
+ # Corresponds to the JSON property `branchStats`
11295
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranchBranchStats]
11296
+ attr_accessor :branch_stats
11297
+
11298
+ # Output only. Human readable name of the branch to display in the UI.
11299
+ # Corresponds to the JSON property `displayName`
11300
+ # @return [String]
11301
+ attr_accessor :display_name
11302
+
11303
+ # Output only. Indicates whether this branch is set as the default branch of its
11304
+ # parent data store.
11305
+ # Corresponds to the JSON property `isDefault`
11306
+ # @return [Boolean]
11307
+ attr_accessor :is_default
11308
+ alias_method :is_default?, :is_default
11309
+
11310
+ # Output only. Timestamp of last import through DocumentService.ImportDocuments.
11311
+ # Empty value means no import has been made to this branch.
11312
+ # Corresponds to the JSON property `lastDocumentImportTime`
11313
+ # @return [String]
11314
+ attr_accessor :last_document_import_time
11315
+
11316
+ # Immutable. Full resource name of the branch, such as `projects/*/locations/
11317
+ # global/dataStores/data_store/branches/branch_id`.
11318
+ # Corresponds to the JSON property `name`
11319
+ # @return [String]
11320
+ attr_accessor :name
11321
+
11322
+ def initialize(**args)
11323
+ update!(**args)
11324
+ end
11325
+
11326
+ # Update properties of this object
11327
+ def update!(**args)
11328
+ @branch_stats = args[:branch_stats] if args.key?(:branch_stats)
11329
+ @display_name = args[:display_name] if args.key?(:display_name)
11330
+ @is_default = args[:is_default] if args.key?(:is_default)
11331
+ @last_document_import_time = args[:last_document_import_time] if args.key?(:last_document_import_time)
11332
+ @name = args[:name] if args.key?(:name)
11333
+ end
11334
+ end
11335
+
11336
+ # Statistics describing a branch.
11337
+ class GoogleCloudDiscoveryengineV1alphaBranchBranchStats
11338
+ include Google::Apis::Core::Hashable
11339
+
11340
+ # The number of documents in a given branch. The key is a group representing a
11341
+ # set of documents, and the value is the number of document in that group. Note:
11342
+ # keys in this map may change over time. Supported keys: ['all'].
11343
+ # Corresponds to the JSON property `documentCounts`
11344
+ # @return [Hash<String,Fixnum>]
11345
+ attr_accessor :document_counts
11346
+
11347
+ def initialize(**args)
11348
+ update!(**args)
11349
+ end
11350
+
11351
+ # Update properties of this object
11352
+ def update!(**args)
11353
+ @document_counts = args[:document_counts] if args.key?(:document_counts)
11354
+ end
11355
+ end
11356
+
11357
+ # Canned query resource of Assistant. It represents a short-cut to a predefined
11358
+ # conversation start.
11359
+ class GoogleCloudDiscoveryengineV1alphaCannedQuery
11360
+ include Google::Apis::Core::Hashable
11361
+
11362
+ # The text pieces for the canned query, which can be localized.
11363
+ # Corresponds to the JSON property `defaultTexts`
11364
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts]
11365
+ attr_accessor :default_texts
11366
+
11367
+ # The display name of the canned query. It must be a UTF-8 encoded string with a
11368
+ # length limit of 128 characters.
11369
+ # Corresponds to the JSON property `displayName`
11370
+ # @return [String]
11371
+ attr_accessor :display_name
11372
+
11373
+ # Whether this canned query is enabled.
11374
+ # Corresponds to the JSON property `enabled`
11375
+ # @return [Boolean]
11376
+ attr_accessor :enabled
11377
+ alias_method :enabled?, :enabled
11378
+
11379
+ # Output only. Whether this is a Google-defined, read-only canned query.
11380
+ # Corresponds to the JSON property `googleDefined`
11381
+ # @return [Boolean]
11382
+ attr_accessor :google_defined
11383
+ alias_method :google_defined?, :google_defined
11384
+
11385
+ # Optional. The translations of the text attributes. The keys should be BCP-47
11386
+ # language codes.
11387
+ # Corresponds to the JSON property `localizedTexts`
11388
+ # @return [Hash<String,Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts>]
11389
+ attr_accessor :localized_texts
11390
+
11391
+ # Immutable. Resource name of the canned query. Format: `projects/`project`/
11392
+ # locations/`location`/collections/`collection`/engines/`engine`/assistants/`
11393
+ # assistant`/cannedQueries/`canned_query`` It must be a UTF-8 encoded string
11394
+ # with a length limit of 1024 characters.
11395
+ # Corresponds to the JSON property `name`
11396
+ # @return [String]
11397
+ attr_accessor :name
11398
+
11399
+ # Optional. The capabilities the Assistant needs to have to use this canned
11400
+ # query.
11401
+ # Corresponds to the JSON property `requiredCapabilities`
11402
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryAssistantCapability>]
11403
+ attr_accessor :required_capabilities
11404
+
11405
+ def initialize(**args)
11406
+ update!(**args)
11407
+ end
11408
+
11409
+ # Update properties of this object
11410
+ def update!(**args)
11411
+ @default_texts = args[:default_texts] if args.key?(:default_texts)
11412
+ @display_name = args[:display_name] if args.key?(:display_name)
11413
+ @enabled = args[:enabled] if args.key?(:enabled)
11414
+ @google_defined = args[:google_defined] if args.key?(:google_defined)
11415
+ @localized_texts = args[:localized_texts] if args.key?(:localized_texts)
11416
+ @name = args[:name] if args.key?(:name)
11417
+ @required_capabilities = args[:required_capabilities] if args.key?(:required_capabilities)
11418
+ end
11419
+ end
11420
+
11421
+ # Capability of an assistant needed to use this canned query.
11422
+ class GoogleCloudDiscoveryengineV1alphaCannedQueryAssistantCapability
10638
11423
  include Google::Apis::Core::Hashable
10639
11424
 
10640
- # The Bigtable Options object that contains information to support the import.
10641
- # Corresponds to the JSON property `bigtableOptions`
10642
- # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptions]
10643
- attr_accessor :bigtable_options
10644
-
10645
- # Required. The instance ID of the Cloud Bigtable that needs to be imported.
10646
- # Corresponds to the JSON property `instanceId`
10647
- # @return [String]
10648
- attr_accessor :instance_id
10649
-
10650
- # The project ID that contains the Bigtable source. Has a length limit of 128
10651
- # characters. If not specified, inherits the project ID from the parent request.
10652
- # Corresponds to the JSON property `projectId`
10653
- # @return [String]
10654
- attr_accessor :project_id
10655
-
10656
- # Required. The table ID of the Cloud Bigtable that needs to be imported.
10657
- # Corresponds to the JSON property `tableId`
11425
+ # The name of the action that the Assistant needs to have set up to use this
11426
+ # canned query.
11427
+ # Corresponds to the JSON property `actionName`
10658
11428
  # @return [String]
10659
- attr_accessor :table_id
11429
+ attr_accessor :action_name
10660
11430
 
10661
11431
  def initialize(**args)
10662
11432
  update!(**args)
@@ -10664,45 +11434,28 @@ module Google
10664
11434
 
10665
11435
  # Update properties of this object
10666
11436
  def update!(**args)
10667
- @bigtable_options = args[:bigtable_options] if args.key?(:bigtable_options)
10668
- @instance_id = args[:instance_id] if args.key?(:instance_id)
10669
- @project_id = args[:project_id] if args.key?(:project_id)
10670
- @table_id = args[:table_id] if args.key?(:table_id)
11437
+ @action_name = args[:action_name] if args.key?(:action_name)
10671
11438
  end
10672
11439
  end
10673
11440
 
10674
- # A data branch that stores Documents.
10675
- class GoogleCloudDiscoveryengineV1alphaBranch
11441
+ # The text pieces for the canned query, which can be localized.
11442
+ class GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts
10676
11443
  include Google::Apis::Core::Hashable
10677
11444
 
10678
- # Statistics describing a branch.
10679
- # Corresponds to the JSON property `branchStats`
10680
- # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranchBranchStats]
10681
- attr_accessor :branch_stats
10682
-
10683
- # Output only. Human readable name of the branch to display in the UI.
10684
- # Corresponds to the JSON property `displayName`
11445
+ # Optional. The prefix that `suggested_prompts` should start with.
11446
+ # Corresponds to the JSON property `prefix`
10685
11447
  # @return [String]
10686
- attr_accessor :display_name
10687
-
10688
- # Output only. Indicates whether this branch is set as the default branch of its
10689
- # parent data store.
10690
- # Corresponds to the JSON property `isDefault`
10691
- # @return [Boolean]
10692
- attr_accessor :is_default
10693
- alias_method :is_default?, :is_default
11448
+ attr_accessor :prefix
10694
11449
 
10695
- # Output only. Timestamp of last import through DocumentService.ImportDocuments.
10696
- # Empty value means no import has been made to this branch.
10697
- # Corresponds to the JSON property `lastDocumentImportTime`
10698
- # @return [String]
10699
- attr_accessor :last_document_import_time
11450
+ # Required. The prompts the canned query will offer to the user.
11451
+ # Corresponds to the JSON property `suggestedPrompts`
11452
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQuerySuggestedPrompt>]
11453
+ attr_accessor :suggested_prompts
10700
11454
 
10701
- # Immutable. Full resource name of the branch, such as `projects/*/locations/
10702
- # global/dataStores/data_store/branches/branch_id`.
10703
- # Corresponds to the JSON property `name`
11455
+ # Required. The title that is for the end user.
11456
+ # Corresponds to the JSON property `title`
10704
11457
  # @return [String]
10705
- attr_accessor :name
11458
+ attr_accessor :title
10706
11459
 
10707
11460
  def initialize(**args)
10708
11461
  update!(**args)
@@ -10710,24 +11463,20 @@ module Google
10710
11463
 
10711
11464
  # Update properties of this object
10712
11465
  def update!(**args)
10713
- @branch_stats = args[:branch_stats] if args.key?(:branch_stats)
10714
- @display_name = args[:display_name] if args.key?(:display_name)
10715
- @is_default = args[:is_default] if args.key?(:is_default)
10716
- @last_document_import_time = args[:last_document_import_time] if args.key?(:last_document_import_time)
10717
- @name = args[:name] if args.key?(:name)
11466
+ @prefix = args[:prefix] if args.key?(:prefix)
11467
+ @suggested_prompts = args[:suggested_prompts] if args.key?(:suggested_prompts)
11468
+ @title = args[:title] if args.key?(:title)
10718
11469
  end
10719
11470
  end
10720
11471
 
10721
- # Statistics describing a branch.
10722
- class GoogleCloudDiscoveryengineV1alphaBranchBranchStats
11472
+ # A suggested prompt for the canned query.
11473
+ class GoogleCloudDiscoveryengineV1alphaCannedQuerySuggestedPrompt
10723
11474
  include Google::Apis::Core::Hashable
10724
11475
 
10725
- # The number of documents in a given branch. The key is a group representing a
10726
- # set of documents, and the value is the number of document in that group. Note:
10727
- # keys in this map may change over time. Supported keys: ['all'].
10728
- # Corresponds to the JSON property `documentCounts`
10729
- # @return [Hash<String,Fixnum>]
10730
- attr_accessor :document_counts
11476
+ # Required. The text of the suggested prompt.
11477
+ # Corresponds to the JSON property `promptText`
11478
+ # @return [String]
11479
+ attr_accessor :prompt_text
10731
11480
 
10732
11481
  def initialize(**args)
10733
11482
  update!(**args)
@@ -10735,7 +11484,7 @@ module Google
10735
11484
 
10736
11485
  # Update properties of this object
10737
11486
  def update!(**args)
10738
- @document_counts = args[:document_counts] if args.key?(:document_counts)
11487
+ @prompt_text = args[:prompt_text] if args.key?(:prompt_text)
10739
11488
  end
10740
11489
  end
10741
11490
 
@@ -13560,6 +14309,11 @@ module Google
13560
14309
  # @return [String]
13561
14310
  attr_accessor :configurable_billing_approach
13562
14311
 
14312
+ # Output only. The timestamp when configurable_billing_approach was last updated.
14313
+ # Corresponds to the JSON property `configurableBillingApproachUpdateTime`
14314
+ # @return [String]
14315
+ attr_accessor :configurable_billing_approach_update_time
14316
+
13563
14317
  # Immutable. The content config of the data store. If this field is unset, the
13564
14318
  # server behavior defaults to ContentConfig.NO_CONTENT.
13565
14319
  # Corresponds to the JSON property `contentConfig`
@@ -13679,6 +14433,7 @@ module Google
13679
14433
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
13680
14434
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
13681
14435
  @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
14436
+ @configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
13682
14437
  @content_config = args[:content_config] if args.key?(:content_config)
13683
14438
  @create_time = args[:create_time] if args.key?(:create_time)
13684
14439
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -13809,6 +14564,33 @@ module Google
13809
14564
  end
13810
14565
  end
13811
14566
 
14567
+ # Metadata related to the progress of the AgentService.DeleteAgent operation.
14568
+ # This will be returned by the google.longrunning.Operation.metadata field.
14569
+ class GoogleCloudDiscoveryengineV1alphaDeleteAgentMetadata
14570
+ include Google::Apis::Core::Hashable
14571
+
14572
+ # Operation create time.
14573
+ # Corresponds to the JSON property `createTime`
14574
+ # @return [String]
14575
+ attr_accessor :create_time
14576
+
14577
+ # Operation last update time. If the operation is done, this is also the finish
14578
+ # time.
14579
+ # Corresponds to the JSON property `updateTime`
14580
+ # @return [String]
14581
+ attr_accessor :update_time
14582
+
14583
+ def initialize(**args)
14584
+ update!(**args)
14585
+ end
14586
+
14587
+ # Update properties of this object
14588
+ def update!(**args)
14589
+ @create_time = args[:create_time] if args.key?(:create_time)
14590
+ @update_time = args[:update_time] if args.key?(:update_time)
14591
+ end
14592
+ end
14593
+
13812
14594
  # Metadata related to the progress of the CmekConfigService.DeleteCmekConfig
13813
14595
  # operation. This will be returned by the google.longrunning.Operation.metadata
13814
14596
  # field.
@@ -14051,6 +14833,35 @@ module Google
14051
14833
  end
14052
14834
  end
14053
14835
 
14836
+ # Metadata related to the progress of the UserStoreService.DeleteUserStore
14837
+ # operation. This will be returned by the google.longrunning.Operation.metadata
14838
+ # field. Delete UserStore will delete all the end users under the user store,
14839
+ # return the number of end users successfully deleted or failed to delete in the
14840
+ # metadata.
14841
+ class GoogleCloudDiscoveryengineV1alphaDeleteUserStoreMetadata
14842
+ include Google::Apis::Core::Hashable
14843
+
14844
+ # The number of end users under the user store that failed to be deleted.
14845
+ # Corresponds to the JSON property `failureCount`
14846
+ # @return [Fixnum]
14847
+ attr_accessor :failure_count
14848
+
14849
+ # The number of end users under the user store that were successfully deleted.
14850
+ # Corresponds to the JSON property `successCount`
14851
+ # @return [Fixnum]
14852
+ attr_accessor :success_count
14853
+
14854
+ def initialize(**args)
14855
+ update!(**args)
14856
+ end
14857
+
14858
+ # Update properties of this object
14859
+ def update!(**args)
14860
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
14861
+ @success_count = args[:success_count] if args.key?(:success_count)
14862
+ end
14863
+ end
14864
+
14054
14865
  # Defines target endpoints used to connect to third-party sources.
14055
14866
  class GoogleCloudDiscoveryengineV1alphaDestinationConfig
14056
14867
  include Google::Apis::Core::Hashable
@@ -14114,6 +14925,26 @@ module Google
14114
14925
  end
14115
14926
  end
14116
14927
 
14928
+ # Stored definition of an agent that uses a Dialogflow agent.
14929
+ class GoogleCloudDiscoveryengineV1alphaDialogflowAgentDefinition
14930
+ include Google::Apis::Core::Hashable
14931
+
14932
+ # Required. Resource name of the underlying Dialogflow Agent. Format: `projects/`
14933
+ # project`/locations/`location`/agents/`agent``
14934
+ # Corresponds to the JSON property `dialogflowAgent`
14935
+ # @return [String]
14936
+ attr_accessor :dialogflow_agent
14937
+
14938
+ def initialize(**args)
14939
+ update!(**args)
14940
+ end
14941
+
14942
+ # Update properties of this object
14943
+ def update!(**args)
14944
+ @dialogflow_agent = args[:dialogflow_agent] if args.key?(:dialogflow_agent)
14945
+ end
14946
+ end
14947
+
14117
14948
  # Metadata related to the progress of the SiteSearchEngineService.
14118
14949
  # DisableAdvancedSiteSearch operation. This will be returned by the google.
14119
14950
  # longrunning.Operation.metadata field.
@@ -14168,6 +14999,64 @@ module Google
14168
14999
  end
14169
15000
  end
14170
15001
 
15002
+ # Request message for LicenseConfigService.DistributeLicenseConfig method.
15003
+ class GoogleCloudDiscoveryengineV1alphaDistributeLicenseConfigRequest
15004
+ include Google::Apis::Core::Hashable
15005
+
15006
+ # Optional. Distribute seats to this license config instead of creating a new
15007
+ # one. If not specified, a new license config will be created from the billing
15008
+ # account license config.
15009
+ # Corresponds to the JSON property `licenseConfigId`
15010
+ # @return [String]
15011
+ attr_accessor :license_config_id
15012
+
15013
+ # Required. The number of licenses to distribute.
15014
+ # Corresponds to the JSON property `licenseCount`
15015
+ # @return [Fixnum]
15016
+ attr_accessor :license_count
15017
+
15018
+ # Required. The target GCP project region to distribute the license config to.
15019
+ # Corresponds to the JSON property `location`
15020
+ # @return [String]
15021
+ attr_accessor :location
15022
+
15023
+ # Required. The target GCP project number to distribute the license config to.
15024
+ # Corresponds to the JSON property `projectNumber`
15025
+ # @return [Fixnum]
15026
+ attr_accessor :project_number
15027
+
15028
+ def initialize(**args)
15029
+ update!(**args)
15030
+ end
15031
+
15032
+ # Update properties of this object
15033
+ def update!(**args)
15034
+ @license_config_id = args[:license_config_id] if args.key?(:license_config_id)
15035
+ @license_count = args[:license_count] if args.key?(:license_count)
15036
+ @location = args[:location] if args.key?(:location)
15037
+ @project_number = args[:project_number] if args.key?(:project_number)
15038
+ end
15039
+ end
15040
+
15041
+ # Response message for LicenseConfigService.DistributeLicenseConfig method.
15042
+ class GoogleCloudDiscoveryengineV1alphaDistributeLicenseConfigResponse
15043
+ include Google::Apis::Core::Hashable
15044
+
15045
+ # Information about users' licenses.
15046
+ # Corresponds to the JSON property `licenseConfig`
15047
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
15048
+ attr_accessor :license_config
15049
+
15050
+ def initialize(**args)
15051
+ update!(**args)
15052
+ end
15053
+
15054
+ # Update properties of this object
15055
+ def update!(**args)
15056
+ @license_config = args[:license_config] if args.key?(:license_config)
15057
+ end
15058
+ end
15059
+
14171
15060
  # Document captures all raw metadata information of items to be recommended or
14172
15061
  # searched.
14173
15062
  class GoogleCloudDiscoveryengineV1alphaDocument
@@ -16658,6 +17547,52 @@ module Google
16658
17547
  end
16659
17548
  end
16660
17549
 
17550
+ # Request for the AgentService.ImportAgentFile method.
17551
+ class GoogleCloudDiscoveryengineV1alphaImportAgentFileRequest
17552
+ include Google::Apis::Core::Hashable
17553
+
17554
+ # Required. The name of the file.
17555
+ # Corresponds to the JSON property `fileName`
17556
+ # @return [String]
17557
+ attr_accessor :file_name
17558
+
17559
+ # Optional. The content type of the file, see https://www.iana.org/assignments/
17560
+ # media-types/media-types.xhtml. This field is required when the data source
17561
+ # does not provide the content type.
17562
+ # Corresponds to the JSON property `mimeType`
17563
+ # @return [String]
17564
+ attr_accessor :mime_type
17565
+
17566
+ def initialize(**args)
17567
+ update!(**args)
17568
+ end
17569
+
17570
+ # Update properties of this object
17571
+ def update!(**args)
17572
+ @file_name = args[:file_name] if args.key?(:file_name)
17573
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
17574
+ end
17575
+ end
17576
+
17577
+ # Response for the AgentService.ImportAgentFile method.
17578
+ class GoogleCloudDiscoveryengineV1alphaImportAgentFileResponse
17579
+ include Google::Apis::Core::Hashable
17580
+
17581
+ # Describes a file used internally by an agent as a context on each invocation.
17582
+ # Corresponds to the JSON property `agentFile`
17583
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentFile]
17584
+ attr_accessor :agent_file
17585
+
17586
+ def initialize(**args)
17587
+ update!(**args)
17588
+ end
17589
+
17590
+ # Update properties of this object
17591
+ def update!(**args)
17592
+ @agent_file = args[:agent_file] if args.key?(:agent_file)
17593
+ end
17594
+ end
17595
+
16661
17596
  # Metadata related to the progress of the ImportCompletionSuggestions operation.
16662
17597
  # This will be returned by the google.longrunning.Operation.metadata field.
16663
17598
  class GoogleCloudDiscoveryengineV1alphaImportCompletionSuggestionsMetadata
@@ -17625,6 +18560,86 @@ module Google
17625
18560
  end
17626
18561
  end
17627
18562
 
18563
+ # Response message for the AgentService.ListAgents method.
18564
+ class GoogleCloudDiscoveryengineV1alphaListAgentsResponse
18565
+ include Google::Apis::Core::Hashable
18566
+
18567
+ # The agents visible to the caller under the parent Assistant.
18568
+ # Corresponds to the JSON property `agents`
18569
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgent>]
18570
+ attr_accessor :agents
18571
+
18572
+ # A token that can be sent as ListAgentsRequest.page_token to retrieve the next
18573
+ # page. If this field is omitted, there are no subsequent pages.
18574
+ # Corresponds to the JSON property `nextPageToken`
18575
+ # @return [String]
18576
+ attr_accessor :next_page_token
18577
+
18578
+ def initialize(**args)
18579
+ update!(**args)
18580
+ end
18581
+
18582
+ # Update properties of this object
18583
+ def update!(**args)
18584
+ @agents = args[:agents] if args.key?(:agents)
18585
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
18586
+ end
18587
+ end
18588
+
18589
+ # Response message for the AuthorizationService.ListAuthorizations method.
18590
+ class GoogleCloudDiscoveryengineV1alphaListAuthorizationsResponse
18591
+ include Google::Apis::Core::Hashable
18592
+
18593
+ # All the customer's Authorizations.
18594
+ # Corresponds to the JSON property `authorizations`
18595
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAuthorization>]
18596
+ attr_accessor :authorizations
18597
+
18598
+ # A token that can be sent as ListAuthorizationsRequest.page_token to retrieve
18599
+ # the next page. If this field is omitted, there are no subsequent pages.
18600
+ # Corresponds to the JSON property `nextPageToken`
18601
+ # @return [String]
18602
+ attr_accessor :next_page_token
18603
+
18604
+ def initialize(**args)
18605
+ update!(**args)
18606
+ end
18607
+
18608
+ # Update properties of this object
18609
+ def update!(**args)
18610
+ @authorizations = args[:authorizations] if args.key?(:authorizations)
18611
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
18612
+ end
18613
+ end
18614
+
18615
+ # Response message for LicenseConfigService.ListBillingAccountLicenseConfigs
18616
+ # method.
18617
+ class GoogleCloudDiscoveryengineV1alphaListBillingAccountLicenseConfigsResponse
18618
+ include Google::Apis::Core::Hashable
18619
+
18620
+ # All BillingAccountLicenseConfigs for the given billing account.
18621
+ # Corresponds to the JSON property `billingAccountLicenseConfigs`
18622
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBillingAccountLicenseConfig>]
18623
+ attr_accessor :billing_account_license_configs
18624
+
18625
+ # A token that can be sent as ListBillingAccountLicenseConfigsRequest.page_token
18626
+ # to retrieve the next page. If this field is omitted, there are no subsequent
18627
+ # pages.
18628
+ # Corresponds to the JSON property `nextPageToken`
18629
+ # @return [String]
18630
+ attr_accessor :next_page_token
18631
+
18632
+ def initialize(**args)
18633
+ update!(**args)
18634
+ end
18635
+
18636
+ # Update properties of this object
18637
+ def update!(**args)
18638
+ @billing_account_license_configs = args[:billing_account_license_configs] if args.key?(:billing_account_license_configs)
18639
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
18640
+ end
18641
+ end
18642
+
17628
18643
  # Response for BranchService.ListBranches method.
17629
18644
  class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
17630
18645
  include Google::Apis::Core::Hashable
@@ -17644,6 +18659,32 @@ module Google
17644
18659
  end
17645
18660
  end
17646
18661
 
18662
+ # Response message for the CannedQueryService.ListCannedQueries method.
18663
+ class GoogleCloudDiscoveryengineV1alphaListCannedQueriesResponse
18664
+ include Google::Apis::Core::Hashable
18665
+
18666
+ # The list of CannedQuerys matching the request.
18667
+ # Corresponds to the JSON property `cannedQueries`
18668
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQuery>]
18669
+ attr_accessor :canned_queries
18670
+
18671
+ # A token that can be sent as ListCannedQueriesRequest.page_token to retrieve
18672
+ # the next page. If this field is omitted, there are no subsequent pages.
18673
+ # Corresponds to the JSON property `nextPageToken`
18674
+ # @return [String]
18675
+ attr_accessor :next_page_token
18676
+
18677
+ def initialize(**args)
18678
+ update!(**args)
18679
+ end
18680
+
18681
+ # Update properties of this object
18682
+ def update!(**args)
18683
+ @canned_queries = args[:canned_queries] if args.key?(:canned_queries)
18684
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
18685
+ end
18686
+ end
18687
+
17647
18688
  # Response message for ChunkService.ListChunks method.
17648
18689
  class GoogleCloudDiscoveryengineV1alphaListChunksResponse
17649
18690
  include Google::Apis::Core::Hashable
@@ -18636,6 +19677,16 @@ module Google
18636
19677
  class GoogleCloudDiscoveryengineV1alphaProject
18637
19678
  include Google::Apis::Core::Hashable
18638
19679
 
19680
+ # Represents the currently effective configurable billing parameters. These
19681
+ # values are derived from the customer's subscription history stored internally
19682
+ # and reflect the thresholds actively being used for billing purposes at the
19683
+ # time of the GetProject call. This includes the start_time of the subscription
19684
+ # and may differ from the values in `customer_provided_config` due to billing
19685
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
19686
+ # Corresponds to the JSON property `configurableBillingStatus`
19687
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus]
19688
+ attr_accessor :configurable_billing_status
19689
+
18639
19690
  # Output only. The timestamp when this project is created.
18640
19691
  # Corresponds to the JSON property `createTime`
18641
19692
  # @return [String]
@@ -18670,6 +19721,7 @@ module Google
18670
19721
 
18671
19722
  # Update properties of this object
18672
19723
  def update!(**args)
19724
+ @configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
18673
19725
  @create_time = args[:create_time] if args.key?(:create_time)
18674
19726
  @customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
18675
19727
  @name = args[:name] if args.key?(:name)
@@ -18678,6 +19730,46 @@ module Google
18678
19730
  end
18679
19731
  end
18680
19732
 
19733
+ # Represents the currently effective configurable billing parameters. These
19734
+ # values are derived from the customer's subscription history stored internally
19735
+ # and reflect the thresholds actively being used for billing purposes at the
19736
+ # time of the GetProject call. This includes the start_time of the subscription
19737
+ # and may differ from the values in `customer_provided_config` due to billing
19738
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
19739
+ class GoogleCloudDiscoveryengineV1alphaProjectConfigurableBillingStatus
19740
+ include Google::Apis::Core::Hashable
19741
+
19742
+ # Optional. The currently effective Indexing Core threshold. This is the
19743
+ # threshold against which Indexing Core usage is compared for overage
19744
+ # calculations.
19745
+ # Corresponds to the JSON property `effectiveIndexingCoreThreshold`
19746
+ # @return [Fixnum]
19747
+ attr_accessor :effective_indexing_core_threshold
19748
+
19749
+ # Optional. The currently effective Search QPM threshold in queries per minute.
19750
+ # This is the threshold against which QPM usage is compared for overage
19751
+ # calculations.
19752
+ # Corresponds to the JSON property `effectiveSearchQpmThreshold`
19753
+ # @return [Fixnum]
19754
+ attr_accessor :effective_search_qpm_threshold
19755
+
19756
+ # Optional. The start time of the currently active billing subscription.
19757
+ # Corresponds to the JSON property `startTime`
19758
+ # @return [String]
19759
+ attr_accessor :start_time
19760
+
19761
+ def initialize(**args)
19762
+ update!(**args)
19763
+ end
19764
+
19765
+ # Update properties of this object
19766
+ def update!(**args)
19767
+ @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
19768
+ @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
19769
+ @start_time = args[:start_time] if args.key?(:start_time)
19770
+ end
19771
+ end
19772
+
18681
19773
  # Customer provided configurations.
18682
19774
  class GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfig
18683
19775
  include Google::Apis::Core::Hashable
@@ -18707,6 +19799,13 @@ module Google
18707
19799
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
18708
19800
  attr_accessor :model_armor_config
18709
19801
 
19802
+ # Optional. Whether to disable the notebook sharing feature for the project.
19803
+ # Default to false if not specified.
19804
+ # Corresponds to the JSON property `optOutNotebookSharing`
19805
+ # @return [Boolean]
19806
+ attr_accessor :opt_out_notebook_sharing
19807
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
19808
+
18710
19809
  def initialize(**args)
18711
19810
  update!(**args)
18712
19811
  end
@@ -18714,6 +19813,7 @@ module Google
18714
19813
  # Update properties of this object
18715
19814
  def update!(**args)
18716
19815
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
19816
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
18717
19817
  end
18718
19818
  end
18719
19819
 
@@ -20438,6 +21538,60 @@ module Google
20438
21538
  end
20439
21539
  end
20440
21540
 
21541
+ # Request message for LicenseConfigService.RetractLicenseConfig method.
21542
+ class GoogleCloudDiscoveryengineV1alphaRetractLicenseConfigRequest
21543
+ include Google::Apis::Core::Hashable
21544
+
21545
+ # Optional. If set to true, retract the entire license config. Otherwise,
21546
+ # retract the specified license count.
21547
+ # Corresponds to the JSON property `fullRetract`
21548
+ # @return [Boolean]
21549
+ attr_accessor :full_retract
21550
+ alias_method :full_retract?, :full_retract
21551
+
21552
+ # Required. Full resource name of LicenseConfig. Format: `projects/`project`/
21553
+ # locations/`location`/licenseConfigs/`license_config_id``.
21554
+ # Corresponds to the JSON property `licenseConfig`
21555
+ # @return [String]
21556
+ attr_accessor :license_config
21557
+
21558
+ # Optional. The number of licenses to retract. Only used when full_retract is
21559
+ # false.
21560
+ # Corresponds to the JSON property `licenseCount`
21561
+ # @return [Fixnum]
21562
+ attr_accessor :license_count
21563
+
21564
+ def initialize(**args)
21565
+ update!(**args)
21566
+ end
21567
+
21568
+ # Update properties of this object
21569
+ def update!(**args)
21570
+ @full_retract = args[:full_retract] if args.key?(:full_retract)
21571
+ @license_config = args[:license_config] if args.key?(:license_config)
21572
+ @license_count = args[:license_count] if args.key?(:license_count)
21573
+ end
21574
+ end
21575
+
21576
+ # Response message for LicenseConfigService.RetractLicenseConfig method.
21577
+ class GoogleCloudDiscoveryengineV1alphaRetractLicenseConfigResponse
21578
+ include Google::Apis::Core::Hashable
21579
+
21580
+ # Information about users' licenses.
21581
+ # Corresponds to the JSON property `licenseConfig`
21582
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
21583
+ attr_accessor :license_config
21584
+
21585
+ def initialize(**args)
21586
+ update!(**args)
21587
+ end
21588
+
21589
+ # Update properties of this object
21590
+ def update!(**args)
21591
+ @license_config = args[:license_config] if args.key?(:license_config)
21592
+ end
21593
+ end
21594
+
20441
21595
  # Safety rating corresponding to the generated content.
20442
21596
  class GoogleCloudDiscoveryengineV1alphaSafetyRating
20443
21597
  include Google::Apis::Core::Hashable
@@ -21099,9 +22253,9 @@ module Google
21099
22253
  # @return [Hash<String,String>]
21100
22254
  attr_accessor :user_labels
21101
22255
 
21102
- # A unique identifier for tracking visitors. For example, this could be
21103
- # implemented with an HTTP cookie, which should be able to uniquely identify a
21104
- # visitor on a single device. This unique identifier should not change if the
22256
+ # Optional. A unique identifier for tracking visitors. For example, this could
22257
+ # be implemented with an HTTP cookie, which should be able to uniquely identify
22258
+ # a visitor on a single device. This unique identifier should not change if the
21105
22259
  # visitor logs in or out of the website. This field should NOT have a fixed
21106
22260
  # value such as `unknown_visitor`. This should be the same identifier as
21107
22261
  # UserEvent.user_pseudo_id and CompleteQueryRequest.user_pseudo_id The field
@@ -24950,6 +26104,63 @@ module Google
24950
26104
  end
24951
26105
  end
24952
26106
 
26107
+ # Request message for the AgentService.UploadAgentFile method.
26108
+ class GoogleCloudDiscoveryengineV1alphaUploadAgentFileRequest
26109
+ include Google::Apis::Core::Hashable
26110
+
26111
+ # A reference to data stored on the filesystem, on GFS or in blobstore.
26112
+ # Corresponds to the JSON property `blob`
26113
+ # @return [Google::Apis::DiscoveryengineV1alpha::GdataMedia]
26114
+ attr_accessor :blob
26115
+
26116
+ # Extra information added to operations that support Scotty media requests.
26117
+ # Corresponds to the JSON property `mediaRequestInfo`
26118
+ # @return [Google::Apis::DiscoveryengineV1alpha::ApiservingMediaRequestInfo]
26119
+ attr_accessor :media_request_info
26120
+
26121
+ def initialize(**args)
26122
+ update!(**args)
26123
+ end
26124
+
26125
+ # Update properties of this object
26126
+ def update!(**args)
26127
+ @blob = args[:blob] if args.key?(:blob)
26128
+ @media_request_info = args[:media_request_info] if args.key?(:media_request_info)
26129
+ end
26130
+ end
26131
+
26132
+ # Response message for the AgentService.UploadAgentFile method.
26133
+ class GoogleCloudDiscoveryengineV1alphaUploadAgentFileResponse
26134
+ include Google::Apis::Core::Hashable
26135
+
26136
+ # Describes a file used internally by an agent as a context on each invocation.
26137
+ # Corresponds to the JSON property `agentFile`
26138
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentFile]
26139
+ attr_accessor :agent_file
26140
+
26141
+ # This message is for backends to pass their scotty media specific fields to ESF.
26142
+ # Backend will include this in their response message to ESF. Example:
26143
+ # ExportFile is an rpc defined for upload using scotty from ESF. rpc ExportFile(
26144
+ # ExportFileRequest) returns (ExportFileResponse) Message ExportFileResponse
26145
+ # will include apiserving.MediaResponseInfo to tell ESF about data like
26146
+ # dynamic_dropzone it needs to pass to Scotty. message ExportFileResponse `
26147
+ # optional gdata.Media blob = 1; optional apiserving.MediaResponseInfo
26148
+ # media_response_info = 2 `
26149
+ # Corresponds to the JSON property `mediaResponseInfo`
26150
+ # @return [Google::Apis::DiscoveryengineV1alpha::ApiservingMediaResponseInfo]
26151
+ attr_accessor :media_response_info
26152
+
26153
+ def initialize(**args)
26154
+ update!(**args)
26155
+ end
26156
+
26157
+ # Update properties of this object
26158
+ def update!(**args)
26159
+ @agent_file = args[:agent_file] if args.key?(:agent_file)
26160
+ @media_response_info = args[:media_response_info] if args.key?(:media_response_info)
26161
+ end
26162
+ end
26163
+
24953
26164
  # Request for the AssistantService.UploadSessionFile method.
24954
26165
  class GoogleCloudDiscoveryengineV1alphaUploadSessionFileRequest
24955
26166
  include Google::Apis::Core::Hashable
@@ -25343,6 +26554,62 @@ module Google
25343
26554
  end
25344
26555
  end
25345
26556
 
26557
+ # Configures metadata that is used for End User entities.
26558
+ class GoogleCloudDiscoveryengineV1alphaUserStore
26559
+ include Google::Apis::Core::Hashable
26560
+
26561
+ # Optional. The default subscription LicenseConfig for the UserStore, if
26562
+ # UserStore.enable_license_auto_register is true, new users will automatically
26563
+ # register under the default subscription. If default LicenseConfig doesn't have
26564
+ # remaining license seats left, new users will not be assigned with license and
26565
+ # will be blocked for Vertex AI Search features. This is used if `
26566
+ # license_assignment_tier_rules` is not configured.
26567
+ # Corresponds to the JSON property `defaultLicenseConfig`
26568
+ # @return [String]
26569
+ attr_accessor :default_license_config
26570
+
26571
+ # The display name of the User Store.
26572
+ # Corresponds to the JSON property `displayName`
26573
+ # @return [String]
26574
+ attr_accessor :display_name
26575
+
26576
+ # Optional. Whether to enable license auto update for users in this User Store.
26577
+ # If true, users with expired licenses will automatically be updated to use the
26578
+ # default license config as long as the default license config has seats left.
26579
+ # Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
26580
+ # @return [Boolean]
26581
+ attr_accessor :enable_expired_license_auto_update
26582
+ alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
26583
+
26584
+ # Optional. Whether to enable license auto register for users in this User Store.
26585
+ # If true, new users will automatically register under the default license
26586
+ # config as long as the default license config has seats left.
26587
+ # Corresponds to the JSON property `enableLicenseAutoRegister`
26588
+ # @return [Boolean]
26589
+ attr_accessor :enable_license_auto_register
26590
+ alias_method :enable_license_auto_register?, :enable_license_auto_register
26591
+
26592
+ # Immutable. The full resource name of the User Store, in the format of `
26593
+ # projects/`project`/locations/`location`/userStores/`user_store``. This field
26594
+ # must be a UTF-8 encoded string with a length limit of 1024 characters.
26595
+ # Corresponds to the JSON property `name`
26596
+ # @return [String]
26597
+ attr_accessor :name
26598
+
26599
+ def initialize(**args)
26600
+ update!(**args)
26601
+ end
26602
+
26603
+ # Update properties of this object
26604
+ def update!(**args)
26605
+ @default_license_config = args[:default_license_config] if args.key?(:default_license_config)
26606
+ @display_name = args[:display_name] if args.key?(:display_name)
26607
+ @enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
26608
+ @enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
26609
+ @name = args[:name] if args.key?(:name)
26610
+ end
26611
+ end
26612
+
25346
26613
  # Standard characteristics of a video media view.
25347
26614
  class GoogleCloudDiscoveryengineV1alphaVideoCharacteristics
25348
26615
  include Google::Apis::Core::Hashable
@@ -25545,11 +26812,6 @@ module Google
25545
26812
  attr_accessor :enable_web_app
25546
26813
  alias_method :enable_web_app?, :enable_web_app
25547
26814
 
25548
- # Allows to toggle unstable/experimental features in the widget (or web app)
25549
- # Corresponds to the JSON property `experimentalFeatures`
25550
- # @return [Hash<String,String>]
25551
- attr_accessor :experimental_features
25552
-
25553
26815
  # The configuration and appearance of facets in the end user view.
25554
26816
  # Corresponds to the JSON property `facetField`
25555
26817
  # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigFacetField>]
@@ -25564,6 +26826,12 @@ module Google
25564
26826
  # @return [Hash<String,Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField>]
25565
26827
  attr_accessor :fields_ui_components_map
25566
26828
 
26829
+ # Output only. Whether the subscription is gemini bundle or not.
26830
+ # Corresponds to the JSON property `geminiBundle`
26831
+ # @return [Boolean]
26832
+ attr_accessor :gemini_bundle
26833
+ alias_method :gemini_bundle?, :gemini_bundle
26834
+
25567
26835
  # Describes the homepage setting of the widget. It includes all homepage related
25568
26836
  # settings and configurations, such as shortcuts.
25569
26837
  # Corresponds to the JSON property `homepageSetting`
@@ -25654,9 +26922,9 @@ module Google
25654
26922
  @enable_snippet_result_summary = args[:enable_snippet_result_summary] if args.key?(:enable_snippet_result_summary)
25655
26923
  @enable_summarization = args[:enable_summarization] if args.key?(:enable_summarization)
25656
26924
  @enable_web_app = args[:enable_web_app] if args.key?(:enable_web_app)
25657
- @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
25658
26925
  @facet_field = args[:facet_field] if args.key?(:facet_field)
25659
26926
  @fields_ui_components_map = args[:fields_ui_components_map] if args.key?(:fields_ui_components_map)
26927
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
25660
26928
  @homepage_setting = args[:homepage_setting] if args.key?(:homepage_setting)
25661
26929
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
25662
26930
  @llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
@@ -25987,10 +27255,7 @@ module Google
25987
27255
  class GoogleCloudDiscoveryengineV1alphaWidgetConfigHomepageSetting
25988
27256
  include Google::Apis::Core::Hashable
25989
27257
 
25990
- # Optional. The shortcuts to display on the homepage. LINT.IfChange(
25991
- # max_shortcuts_number) LINT.ThenChange(//depot/google3/cloud/console/web/ai/
25992
- # unified_cloud_search/components/widget_preview/
25993
- # widget_homepage_shortcut_config_form.ts:max_shortcuts_number)
27258
+ # Optional. The shortcuts to display on the homepage.
25994
27259
  # Corresponds to the JSON property `shortcuts`
25995
27260
  # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigHomepageSettingShortcut>]
25996
27261
  attr_accessor :shortcuts
@@ -26203,6 +27468,12 @@ module Google
26203
27468
  # @return [String]
26204
27469
  attr_accessor :result_description_type
26205
27470
 
27471
+ # SearchAddonSpec is used to disable add-ons for search. By default, if this
27472
+ # field is not specified, add-ons are enabled wherever applicable.
27473
+ # Corresponds to the JSON property `searchAddonSpec`
27474
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsSearchAddonSpec]
27475
+ attr_accessor :search_addon_spec
27476
+
26206
27477
  def initialize(**args)
26207
27478
  update!(**args)
26208
27479
  end
@@ -26223,6 +27494,7 @@ module Google
26223
27494
  @generative_answer_config = args[:generative_answer_config] if args.key?(:generative_answer_config)
26224
27495
  @interaction_type = args[:interaction_type] if args.key?(:interaction_type)
26225
27496
  @result_description_type = args[:result_description_type] if args.key?(:result_description_type)
27497
+ @search_addon_spec = args[:search_addon_spec] if args.key?(:search_addon_spec)
26226
27498
  end
26227
27499
  end
26228
27500
 
@@ -26311,6 +27583,44 @@ module Google
26311
27583
  end
26312
27584
  end
26313
27585
 
27586
+ # SearchAddonSpec is used to disable add-ons for search. By default, if this
27587
+ # field is not specified, add-ons are enabled wherever applicable.
27588
+ class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsSearchAddonSpec
27589
+ include Google::Apis::Core::Hashable
27590
+
27591
+ # Optional. If true, generative answer add-on is disabled. Generative answer add-
27592
+ # on includes natural language to filters and simple answers.
27593
+ # Corresponds to the JSON property `generativeAnswerAddOnDisabled`
27594
+ # @return [Boolean]
27595
+ attr_accessor :generative_answer_add_on_disabled
27596
+ alias_method :generative_answer_add_on_disabled?, :generative_answer_add_on_disabled
27597
+
27598
+ # Optional. If true, disables event re-ranking and personalization to optimize
27599
+ # KPIs & personalize results.
27600
+ # Corresponds to the JSON property `kpiPersonalizationAddOnDisabled`
27601
+ # @return [Boolean]
27602
+ attr_accessor :kpi_personalization_add_on_disabled
27603
+ alias_method :kpi_personalization_add_on_disabled?, :kpi_personalization_add_on_disabled
27604
+
27605
+ # Optional. If true, semantic add-on is disabled. Semantic add-on includes
27606
+ # embeddings and jetstream.
27607
+ # Corresponds to the JSON property `semanticAddOnDisabled`
27608
+ # @return [Boolean]
27609
+ attr_accessor :semantic_add_on_disabled
27610
+ alias_method :semantic_add_on_disabled?, :semantic_add_on_disabled
27611
+
27612
+ def initialize(**args)
27613
+ update!(**args)
27614
+ end
27615
+
27616
+ # Update properties of this object
27617
+ def update!(**args)
27618
+ @generative_answer_add_on_disabled = args[:generative_answer_add_on_disabled] if args.key?(:generative_answer_add_on_disabled)
27619
+ @kpi_personalization_add_on_disabled = args[:kpi_personalization_add_on_disabled] if args.key?(:kpi_personalization_add_on_disabled)
27620
+ @semantic_add_on_disabled = args[:semantic_add_on_disabled] if args.key?(:semantic_add_on_disabled)
27621
+ end
27622
+ end
27623
+
26314
27624
  # Config to store data store type configuration for workspace data
26315
27625
  class GoogleCloudDiscoveryengineV1alphaWorkspaceConfig
26316
27626
  include Google::Apis::Core::Hashable
@@ -27224,6 +28534,11 @@ module Google
27224
28534
  # @return [String]
27225
28535
  attr_accessor :configurable_billing_approach
27226
28536
 
28537
+ # Output only. The timestamp when configurable_billing_approach was last updated.
28538
+ # Corresponds to the JSON property `configurableBillingApproachUpdateTime`
28539
+ # @return [String]
28540
+ attr_accessor :configurable_billing_approach_update_time
28541
+
27227
28542
  # Immutable. The content config of the data store. If this field is unset, the
27228
28543
  # server behavior defaults to ContentConfig.NO_CONTENT.
27229
28544
  # Corresponds to the JSON property `contentConfig`
@@ -27338,6 +28653,7 @@ module Google
27338
28653
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
27339
28654
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
27340
28655
  @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
28656
+ @configurable_billing_approach_update_time = args[:configurable_billing_approach_update_time] if args.key?(:configurable_billing_approach_update_time)
27341
28657
  @content_config = args[:content_config] if args.key?(:content_config)
27342
28658
  @create_time = args[:create_time] if args.key?(:create_time)
27343
28659
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -29270,6 +30586,16 @@ module Google
29270
30586
  class GoogleCloudDiscoveryengineV1betaProject
29271
30587
  include Google::Apis::Core::Hashable
29272
30588
 
30589
+ # Represents the currently effective configurable billing parameters. These
30590
+ # values are derived from the customer's subscription history stored internally
30591
+ # and reflect the thresholds actively being used for billing purposes at the
30592
+ # time of the GetProject call. This includes the start_time of the subscription
30593
+ # and may differ from the values in `customer_provided_config` due to billing
30594
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
30595
+ # Corresponds to the JSON property `configurableBillingStatus`
30596
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus]
30597
+ attr_accessor :configurable_billing_status
30598
+
29273
30599
  # Output only. The timestamp when this project is created.
29274
30600
  # Corresponds to the JSON property `createTime`
29275
30601
  # @return [String]
@@ -29304,6 +30630,7 @@ module Google
29304
30630
 
29305
30631
  # Update properties of this object
29306
30632
  def update!(**args)
30633
+ @configurable_billing_status = args[:configurable_billing_status] if args.key?(:configurable_billing_status)
29307
30634
  @create_time = args[:create_time] if args.key?(:create_time)
29308
30635
  @customer_provided_config = args[:customer_provided_config] if args.key?(:customer_provided_config)
29309
30636
  @name = args[:name] if args.key?(:name)
@@ -29312,6 +30639,46 @@ module Google
29312
30639
  end
29313
30640
  end
29314
30641
 
30642
+ # Represents the currently effective configurable billing parameters. These
30643
+ # values are derived from the customer's subscription history stored internally
30644
+ # and reflect the thresholds actively being used for billing purposes at the
30645
+ # time of the GetProject call. This includes the start_time of the subscription
30646
+ # and may differ from the values in `customer_provided_config` due to billing
30647
+ # rules (e.g., scale-downs taking effect only at the start of a new month).
30648
+ class GoogleCloudDiscoveryengineV1betaProjectConfigurableBillingStatus
30649
+ include Google::Apis::Core::Hashable
30650
+
30651
+ # Optional. The currently effective Indexing Core threshold. This is the
30652
+ # threshold against which Indexing Core usage is compared for overage
30653
+ # calculations.
30654
+ # Corresponds to the JSON property `effectiveIndexingCoreThreshold`
30655
+ # @return [Fixnum]
30656
+ attr_accessor :effective_indexing_core_threshold
30657
+
30658
+ # Optional. The currently effective Search QPM threshold in queries per minute.
30659
+ # This is the threshold against which QPM usage is compared for overage
30660
+ # calculations.
30661
+ # Corresponds to the JSON property `effectiveSearchQpmThreshold`
30662
+ # @return [Fixnum]
30663
+ attr_accessor :effective_search_qpm_threshold
30664
+
30665
+ # Optional. The start time of the currently active billing subscription.
30666
+ # Corresponds to the JSON property `startTime`
30667
+ # @return [String]
30668
+ attr_accessor :start_time
30669
+
30670
+ def initialize(**args)
30671
+ update!(**args)
30672
+ end
30673
+
30674
+ # Update properties of this object
30675
+ def update!(**args)
30676
+ @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
30677
+ @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
30678
+ @start_time = args[:start_time] if args.key?(:start_time)
30679
+ end
30680
+ end
30681
+
29315
30682
  # Customer provided configurations.
29316
30683
  class GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfig
29317
30684
  include Google::Apis::Core::Hashable
@@ -29341,6 +30708,13 @@ module Google
29341
30708
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
29342
30709
  attr_accessor :model_armor_config
29343
30710
 
30711
+ # Optional. Whether to disable the notebook sharing feature for the project.
30712
+ # Default to false if not specified.
30713
+ # Corresponds to the JSON property `optOutNotebookSharing`
30714
+ # @return [Boolean]
30715
+ attr_accessor :opt_out_notebook_sharing
30716
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
30717
+
29344
30718
  def initialize(**args)
29345
30719
  update!(**args)
29346
30720
  end
@@ -29348,6 +30722,7 @@ module Google
29348
30722
  # Update properties of this object
29349
30723
  def update!(**args)
29350
30724
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
30725
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
29351
30726
  end
29352
30727
  end
29353
30728
 
@@ -30122,9 +31497,9 @@ module Google
30122
31497
  # @return [Hash<String,String>]
30123
31498
  attr_accessor :user_labels
30124
31499
 
30125
- # A unique identifier for tracking visitors. For example, this could be
30126
- # implemented with an HTTP cookie, which should be able to uniquely identify a
30127
- # visitor on a single device. This unique identifier should not change if the
31500
+ # Optional. A unique identifier for tracking visitors. For example, this could
31501
+ # be implemented with an HTTP cookie, which should be able to uniquely identify
31502
+ # a visitor on a single device. This unique identifier should not change if the
30128
31503
  # visitor logs in or out of the website. This field should NOT have a fixed
30129
31504
  # value such as `unknown_visitor`. This should be the same identifier as
30130
31505
  # UserEvent.user_pseudo_id and CompleteQueryRequest.user_pseudo_id The field
@@ -31746,6 +33121,62 @@ module Google
31746
33121
  end
31747
33122
  end
31748
33123
 
33124
+ # Configures metadata that is used for End User entities.
33125
+ class GoogleCloudDiscoveryengineV1betaUserStore
33126
+ include Google::Apis::Core::Hashable
33127
+
33128
+ # Optional. The default subscription LicenseConfig for the UserStore, if
33129
+ # UserStore.enable_license_auto_register is true, new users will automatically
33130
+ # register under the default subscription. If default LicenseConfig doesn't have
33131
+ # remaining license seats left, new users will not be assigned with license and
33132
+ # will be blocked for Vertex AI Search features. This is used if `
33133
+ # license_assignment_tier_rules` is not configured.
33134
+ # Corresponds to the JSON property `defaultLicenseConfig`
33135
+ # @return [String]
33136
+ attr_accessor :default_license_config
33137
+
33138
+ # The display name of the User Store.
33139
+ # Corresponds to the JSON property `displayName`
33140
+ # @return [String]
33141
+ attr_accessor :display_name
33142
+
33143
+ # Optional. Whether to enable license auto update for users in this User Store.
33144
+ # If true, users with expired licenses will automatically be updated to use the
33145
+ # default license config as long as the default license config has seats left.
33146
+ # Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
33147
+ # @return [Boolean]
33148
+ attr_accessor :enable_expired_license_auto_update
33149
+ alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
33150
+
33151
+ # Optional. Whether to enable license auto register for users in this User Store.
33152
+ # If true, new users will automatically register under the default license
33153
+ # config as long as the default license config has seats left.
33154
+ # Corresponds to the JSON property `enableLicenseAutoRegister`
33155
+ # @return [Boolean]
33156
+ attr_accessor :enable_license_auto_register
33157
+ alias_method :enable_license_auto_register?, :enable_license_auto_register
33158
+
33159
+ # Immutable. The full resource name of the User Store, in the format of `
33160
+ # projects/`project`/locations/`location`/userStores/`user_store``. This field
33161
+ # must be a UTF-8 encoded string with a length limit of 1024 characters.
33162
+ # Corresponds to the JSON property `name`
33163
+ # @return [String]
33164
+ attr_accessor :name
33165
+
33166
+ def initialize(**args)
33167
+ update!(**args)
33168
+ end
33169
+
33170
+ # Update properties of this object
33171
+ def update!(**args)
33172
+ @default_license_config = args[:default_license_config] if args.key?(:default_license_config)
33173
+ @display_name = args[:display_name] if args.key?(:display_name)
33174
+ @enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
33175
+ @enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
33176
+ @name = args[:name] if args.key?(:name)
33177
+ end
33178
+ end
33179
+
31749
33180
  # Config to store data store type configuration for workspace data
31750
33181
  class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
31751
33182
  include Google::Apis::Core::Hashable