google-apis-discoveryengine_v1alpha 0.77.0 → 0.78.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72c0a8e04ed2dc704b0301ee7bdbc1a35846e61e8817ad25bf19b6c6d490e338
4
- data.tar.gz: e75609bcbcec7191b6976ac6ac6377aaa1abc87ef0f497c7d478e7bb64f9b7e9
3
+ metadata.gz: ce001b0c5157ecc53fc9d878f5cc8d21c97a5c316a91a1af3dc35c475f8482c5
4
+ data.tar.gz: 24db4da18c408ec1dd0a6f3ea97a591e993aaa7cbbbe46901879bb8f09f2361c
5
5
  SHA512:
6
- metadata.gz: d0ceeca93aa831076054256d63cf7c292d15930761c12c2bb70fe1c74b961feecfa11a4a6c69a415974f3c5511258b8c95ff44396667fe8e407c5295820180ba
7
- data.tar.gz: 559d8459d9dd7f580ac54183df395e02d236bd9b68bd1e0fe876646b1a0a659ed14f4f2ab8a18f92e95e7279924d196ad4185da6957add1a6d109ecae07bbdc4
6
+ metadata.gz: bafe3716f76ab84db67c068db461c59854748b5794610a6068a873bd889a56e2369041d22f7f435a431ef6fe955801aec67bc564ebf7ead10d0208e49dd69b5c
7
+ data.tar.gz: 1280be8b8c1c2d113dc0d58f46b081f1bdf531e6c0f645a46c7da512bd54d8c7b41e6cf0ef17f55088b3854a9f7950ac439ac7f3b171ed225ac2dfd5b2290c60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.78.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
3
7
  ### v0.77.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250918
@@ -1677,12 +1677,7 @@ module Google
1677
1677
  class GoogleCloudDiscoveryengineV1ActionConfig
1678
1678
  include Google::Apis::Core::Hashable
1679
1679
 
1680
- # Required. Params needed to support actions in the format of (Key, Value) pairs.
1681
- # Required parameters for sources that support OAUTH, i.e. `gmail`, `
1682
- # google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
1683
- # client_id` * Value: type STRING. The client ID for the service provider to
1684
- # identify your application. * Key: `client_secret` * Value:type STRING. The
1685
- # client secret generated by the application's authorization server.
1680
+ # Optional. Action parameters in structured json format.
1686
1681
  # Corresponds to the JSON property `actionParams`
1687
1682
  # @return [Hash<String,Object>]
1688
1683
  attr_accessor :action_params
@@ -1694,6 +1689,11 @@ module Google
1694
1689
  attr_accessor :is_action_configured
1695
1690
  alias_method :is_action_configured?, :is_action_configured
1696
1691
 
1692
+ # Optional. Action parameters in json string format.
1693
+ # Corresponds to the JSON property `jsonActionParams`
1694
+ # @return [String]
1695
+ attr_accessor :json_action_params
1696
+
1697
1697
  # Optional. The Service Directory resource name (projects/*/locations/*/
1698
1698
  # namespaces/*/services/*) representing a VPC network endpoint used to connect
1699
1699
  # to the data source's `instance_uri`, defined in DataConnector.params. Required
@@ -1717,6 +1717,7 @@ module Google
1717
1717
  def update!(**args)
1718
1718
  @action_params = args[:action_params] if args.key?(:action_params)
1719
1719
  @is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
1720
+ @json_action_params = args[:json_action_params] if args.key?(:json_action_params)
1720
1721
  @service_name = args[:service_name] if args.key?(:service_name)
1721
1722
  @use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
1722
1723
  end
@@ -2129,6 +2130,11 @@ module Google
2129
2130
  class GoogleCloudDiscoveryengineV1BapConfig
2130
2131
  include Google::Apis::Core::Hashable
2131
2132
 
2133
+ # Optional. The actions enabled on the associated BAP connection.
2134
+ # Corresponds to the JSON property `enabledActions`
2135
+ # @return [Array<String>]
2136
+ attr_accessor :enabled_actions
2137
+
2132
2138
  # Required. The supported connector modes for the associated BAP connection.
2133
2139
  # Corresponds to the JSON property `supportedConnectorModes`
2134
2140
  # @return [Array<String>]
@@ -2140,6 +2146,7 @@ module Google
2140
2146
 
2141
2147
  # Update properties of this object
2142
2148
  def update!(**args)
2149
+ @enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
2143
2150
  @supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
2144
2151
  end
2145
2152
  end
@@ -3235,6 +3242,12 @@ module Google
3235
3242
  # @return [Hash<String,Object>]
3236
3243
  attr_accessor :auth_params
3237
3244
 
3245
+ # Optional. Any authentication parameters specific to EUA connectors in json
3246
+ # string format.
3247
+ # Corresponds to the JSON property `jsonAuthParams`
3248
+ # @return [String]
3249
+ attr_accessor :json_auth_params
3250
+
3238
3251
  # Tenant information for a connector source. This includes some of the same
3239
3252
  # information stored in the Credential message, but is limited to only what is
3240
3253
  # needed to provide a list of accessible tenants to the user.
@@ -3250,6 +3263,7 @@ module Google
3250
3263
  def update!(**args)
3251
3264
  @additional_params = args[:additional_params] if args.key?(:additional_params)
3252
3265
  @auth_params = args[:auth_params] if args.key?(:auth_params)
3266
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
3253
3267
  @tenant = args[:tenant] if args.key?(:tenant)
3254
3268
  end
3255
3269
  end
@@ -3264,11 +3278,17 @@ module Google
3264
3278
  # @return [Hash<String,Object>]
3265
3279
  attr_accessor :additional_params
3266
3280
 
3267
- # Optional. Any authentication parameters specific to FEDERATED.
3281
+ # Optional. Any authentication parameters specific to FEDERATED connectors.
3268
3282
  # Corresponds to the JSON property `authParams`
3269
3283
  # @return [Hash<String,Object>]
3270
3284
  attr_accessor :auth_params
3271
3285
 
3286
+ # Optional. Any authentication parameters specific to FEDERATED connectors in
3287
+ # json string format.
3288
+ # Corresponds to the JSON property `jsonAuthParams`
3289
+ # @return [String]
3290
+ attr_accessor :json_auth_params
3291
+
3272
3292
  def initialize(**args)
3273
3293
  update!(**args)
3274
3294
  end
@@ -3277,6 +3297,7 @@ module Google
3277
3297
  def update!(**args)
3278
3298
  @additional_params = args[:additional_params] if args.key?(:additional_params)
3279
3299
  @auth_params = args[:auth_params] if args.key?(:auth_params)
3300
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
3280
3301
  end
3281
3302
  end
3282
3303
 
@@ -3441,6 +3462,12 @@ module Google
3441
3462
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1CmekConfig]
3442
3463
  attr_accessor :cmek_config
3443
3464
 
3465
+ # Optional. Configuration for configurable billing approach. See go/vais-
3466
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
3467
+ # Corresponds to the JSON property `configurableBillingApproach`
3468
+ # @return [String]
3469
+ attr_accessor :configurable_billing_approach
3470
+
3444
3471
  # Immutable. The content config of the data store. If this field is unset, the
3445
3472
  # server behavior defaults to ContentConfig.NO_CONTENT.
3446
3473
  # Corresponds to the JSON property `contentConfig`
@@ -3544,6 +3571,7 @@ module Google
3544
3571
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
3545
3572
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
3546
3573
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
3574
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
3547
3575
  @content_config = args[:content_config] if args.key?(:content_config)
3548
3576
  @create_time = args[:create_time] if args.key?(:create_time)
3549
3577
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -4294,7 +4322,7 @@ module Google
4294
4322
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
4295
4323
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
4296
4324
  # personalization-memory` * `disable-image-generation` * `disable-video-
4297
- # generation`
4325
+ # generation` * `disable-onedrive-upload`
4298
4326
  # Corresponds to the JSON property `features`
4299
4327
  # @return [Hash<String,String>]
4300
4328
  attr_accessor :features
@@ -6775,12 +6803,7 @@ module Google
6775
6803
  class GoogleCloudDiscoveryengineV1alphaActionConfig
6776
6804
  include Google::Apis::Core::Hashable
6777
6805
 
6778
- # Required. Params needed to support actions in the format of (Key, Value) pairs.
6779
- # Required parameters for sources that support OAUTH, i.e. `gmail`, `
6780
- # google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
6781
- # client_id` * Value: type STRING. The client ID for the service provider to
6782
- # identify your application. * Key: `client_secret` * Value:type STRING. The
6783
- # client secret generated by the application's authorization server.
6806
+ # Optional. Action parameters in structured json format.
6784
6807
  # Corresponds to the JSON property `actionParams`
6785
6808
  # @return [Hash<String,Object>]
6786
6809
  attr_accessor :action_params
@@ -6792,6 +6815,11 @@ module Google
6792
6815
  attr_accessor :is_action_configured
6793
6816
  alias_method :is_action_configured?, :is_action_configured
6794
6817
 
6818
+ # Optional. Action parameters in json string format.
6819
+ # Corresponds to the JSON property `jsonActionParams`
6820
+ # @return [String]
6821
+ attr_accessor :json_action_params
6822
+
6795
6823
  # Optional. The Service Directory resource name (projects/*/locations/*/
6796
6824
  # namespaces/*/services/*) representing a VPC network endpoint used to connect
6797
6825
  # to the data source's `instance_uri`, defined in DataConnector.params. Required
@@ -6815,6 +6843,7 @@ module Google
6815
6843
  def update!(**args)
6816
6844
  @action_params = args[:action_params] if args.key?(:action_params)
6817
6845
  @is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
6846
+ @json_action_params = args[:json_action_params] if args.key?(:json_action_params)
6818
6847
  @service_name = args[:service_name] if args.key?(:service_name)
6819
6848
  @use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
6820
6849
  end
@@ -9292,6 +9321,15 @@ module Google
9292
9321
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent]
9293
9322
  attr_accessor :grounded_content
9294
9323
 
9324
+ # Output only. When set, uniquely identifies a reply within the `AssistAnswer`
9325
+ # resource. During an AssistantService.StreamAssist call, multiple `Reply`
9326
+ # messages with the same ID can occur within the response stream (across
9327
+ # multiple AssistantService.StreamAssistResponse messages). These represent
9328
+ # parts of a single `Reply` message in the final `AssistAnswer` resource.
9329
+ # Corresponds to the JSON property `replyId`
9330
+ # @return [String]
9331
+ attr_accessor :reply_id
9332
+
9295
9333
  def initialize(**args)
9296
9334
  update!(**args)
9297
9335
  end
@@ -9299,6 +9337,7 @@ module Google
9299
9337
  # Update properties of this object
9300
9338
  def update!(**args)
9301
9339
  @grounded_content = args[:grounded_content] if args.key?(:grounded_content)
9340
+ @reply_id = args[:reply_id] if args.key?(:reply_id)
9302
9341
  end
9303
9342
  end
9304
9343
 
@@ -9905,6 +9944,11 @@ module Google
9905
9944
  class GoogleCloudDiscoveryengineV1alphaBapConfig
9906
9945
  include Google::Apis::Core::Hashable
9907
9946
 
9947
+ # Optional. The actions enabled on the associated BAP connection.
9948
+ # Corresponds to the JSON property `enabledActions`
9949
+ # @return [Array<String>]
9950
+ attr_accessor :enabled_actions
9951
+
9908
9952
  # Required. The supported connector modes for the associated BAP connection.
9909
9953
  # Corresponds to the JSON property `supportedConnectorModes`
9910
9954
  # @return [Array<String>]
@@ -9916,6 +9960,7 @@ module Google
9916
9960
 
9917
9961
  # Update properties of this object
9918
9962
  def update!(**args)
9963
+ @enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
9919
9964
  @supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
9920
9965
  end
9921
9966
  end
@@ -10457,6 +10502,74 @@ module Google
10457
10502
  end
10458
10503
  end
10459
10504
 
10505
+ # A data branch that stores Documents.
10506
+ class GoogleCloudDiscoveryengineV1alphaBranch
10507
+ include Google::Apis::Core::Hashable
10508
+
10509
+ # Statistics describing a branch.
10510
+ # Corresponds to the JSON property `branchStats`
10511
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranchBranchStats]
10512
+ attr_accessor :branch_stats
10513
+
10514
+ # Output only. Human readable name of the branch to display in the UI.
10515
+ # Corresponds to the JSON property `displayName`
10516
+ # @return [String]
10517
+ attr_accessor :display_name
10518
+
10519
+ # Output only. Indicates whether this branch is set as the default branch of its
10520
+ # parent data store.
10521
+ # Corresponds to the JSON property `isDefault`
10522
+ # @return [Boolean]
10523
+ attr_accessor :is_default
10524
+ alias_method :is_default?, :is_default
10525
+
10526
+ # Output only. Timestamp of last import through DocumentService.ImportDocuments.
10527
+ # Empty value means no import has been made to this branch.
10528
+ # Corresponds to the JSON property `lastDocumentImportTime`
10529
+ # @return [String]
10530
+ attr_accessor :last_document_import_time
10531
+
10532
+ # Immutable. Full resource name of the branch, such as `projects/*/locations/
10533
+ # global/dataStores/data_store/branches/branch_id`.
10534
+ # Corresponds to the JSON property `name`
10535
+ # @return [String]
10536
+ attr_accessor :name
10537
+
10538
+ def initialize(**args)
10539
+ update!(**args)
10540
+ end
10541
+
10542
+ # Update properties of this object
10543
+ def update!(**args)
10544
+ @branch_stats = args[:branch_stats] if args.key?(:branch_stats)
10545
+ @display_name = args[:display_name] if args.key?(:display_name)
10546
+ @is_default = args[:is_default] if args.key?(:is_default)
10547
+ @last_document_import_time = args[:last_document_import_time] if args.key?(:last_document_import_time)
10548
+ @name = args[:name] if args.key?(:name)
10549
+ end
10550
+ end
10551
+
10552
+ # Statistics describing a branch.
10553
+ class GoogleCloudDiscoveryengineV1alphaBranchBranchStats
10554
+ include Google::Apis::Core::Hashable
10555
+
10556
+ # The number of documents in a given branch. The key is a group representing a
10557
+ # set of documents, and the value is the number of document in that group. Note:
10558
+ # keys in this map may change over time. Supported keys: ['all'].
10559
+ # Corresponds to the JSON property `documentCounts`
10560
+ # @return [Hash<String,Fixnum>]
10561
+ attr_accessor :document_counts
10562
+
10563
+ def initialize(**args)
10564
+ update!(**args)
10565
+ end
10566
+
10567
+ # Update properties of this object
10568
+ def update!(**args)
10569
+ @document_counts = args[:document_counts] if args.key?(:document_counts)
10570
+ end
10571
+ end
10572
+
10460
10573
  # Request message for GroundedGenerationService.CheckGrounding method.
10461
10574
  class GoogleCloudDiscoveryengineV1alphaCheckGroundingRequest
10462
10575
  include Google::Apis::Core::Hashable
@@ -12847,6 +12960,12 @@ module Google
12847
12960
  # @return [Hash<String,Object>]
12848
12961
  attr_accessor :auth_params
12849
12962
 
12963
+ # Optional. Any authentication parameters specific to EUA connectors in json
12964
+ # string format.
12965
+ # Corresponds to the JSON property `jsonAuthParams`
12966
+ # @return [String]
12967
+ attr_accessor :json_auth_params
12968
+
12850
12969
  # Tenant information for a connector source. This includes some of the same
12851
12970
  # information stored in the Credential message, but is limited to only what is
12852
12971
  # needed to provide a list of accessible tenants to the user.
@@ -12862,6 +12981,7 @@ module Google
12862
12981
  def update!(**args)
12863
12982
  @additional_params = args[:additional_params] if args.key?(:additional_params)
12864
12983
  @auth_params = args[:auth_params] if args.key?(:auth_params)
12984
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
12865
12985
  @tenant = args[:tenant] if args.key?(:tenant)
12866
12986
  end
12867
12987
  end
@@ -12876,11 +12996,17 @@ module Google
12876
12996
  # @return [Hash<String,Object>]
12877
12997
  attr_accessor :additional_params
12878
12998
 
12879
- # Optional. Any authentication parameters specific to FEDERATED.
12999
+ # Optional. Any authentication parameters specific to FEDERATED connectors.
12880
13000
  # Corresponds to the JSON property `authParams`
12881
13001
  # @return [Hash<String,Object>]
12882
13002
  attr_accessor :auth_params
12883
13003
 
13004
+ # Optional. Any authentication parameters specific to FEDERATED connectors in
13005
+ # json string format.
13006
+ # Corresponds to the JSON property `jsonAuthParams`
13007
+ # @return [String]
13008
+ attr_accessor :json_auth_params
13009
+
12884
13010
  def initialize(**args)
12885
13011
  update!(**args)
12886
13012
  end
@@ -12889,6 +13015,7 @@ module Google
12889
13015
  def update!(**args)
12890
13016
  @additional_params = args[:additional_params] if args.key?(:additional_params)
12891
13017
  @auth_params = args[:auth_params] if args.key?(:auth_params)
13018
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
12892
13019
  end
12893
13020
  end
12894
13021
 
@@ -13053,6 +13180,12 @@ module Google
13053
13180
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCmekConfig]
13054
13181
  attr_accessor :cmek_config
13055
13182
 
13183
+ # Optional. Configuration for configurable billing approach. See go/vais-
13184
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
13185
+ # Corresponds to the JSON property `configurableBillingApproach`
13186
+ # @return [String]
13187
+ attr_accessor :configurable_billing_approach
13188
+
13056
13189
  # Immutable. The content config of the data store. If this field is unset, the
13057
13190
  # server behavior defaults to ContentConfig.NO_CONTENT.
13058
13191
  # Corresponds to the JSON property `contentConfig`
@@ -13171,6 +13304,7 @@ module Google
13171
13304
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
13172
13305
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
13173
13306
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
13307
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
13174
13308
  @content_config = args[:content_config] if args.key?(:content_config)
13175
13309
  @create_time = args[:create_time] if args.key?(:create_time)
13176
13310
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -14341,7 +14475,7 @@ module Google
14341
14475
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
14342
14476
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
14343
14477
  # personalization-memory` * `disable-image-generation` * `disable-video-
14344
- # generation`
14478
+ # generation` * `disable-onedrive-upload`
14345
14479
  # Corresponds to the JSON property `features`
14346
14480
  # @return [Hash<String,String>]
14347
14481
  attr_accessor :features
@@ -17017,6 +17151,25 @@ module Google
17017
17151
  end
17018
17152
  end
17019
17153
 
17154
+ # Response for BranchService.ListBranches method.
17155
+ class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
17156
+ include Google::Apis::Core::Hashable
17157
+
17158
+ # The Branches.
17159
+ # Corresponds to the JSON property `branches`
17160
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch>]
17161
+ attr_accessor :branches
17162
+
17163
+ def initialize(**args)
17164
+ update!(**args)
17165
+ end
17166
+
17167
+ # Update properties of this object
17168
+ def update!(**args)
17169
+ @branches = args[:branches] if args.key?(:branches)
17170
+ end
17171
+ end
17172
+
17020
17173
  # Response message for ChunkService.ListChunks method.
17021
17174
  class GoogleCloudDiscoveryengineV1alphaListChunksResponse
17022
17175
  include Google::Apis::Core::Hashable
@@ -20393,9 +20546,8 @@ module Google
20393
20546
  alias_method :safe_search?, :safe_search
20394
20547
 
20395
20548
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
20396
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
20397
- # specified, we consider that the customer wants to enable them wherever
20398
- # applicable.
20549
+ # model. By default if the SearchAddonSpec is not specified, we consider that
20550
+ # the customer wants to enable them wherever applicable.
20399
20551
  # Corresponds to the JSON property `searchAddonSpec`
20400
20552
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec]
20401
20553
  attr_accessor :search_addon_spec
@@ -21452,9 +21604,8 @@ module Google
21452
21604
  end
21453
21605
 
21454
21606
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
21455
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
21456
- # specified, we consider that the customer wants to enable them wherever
21457
- # applicable.
21607
+ # model. By default if the SearchAddonSpec is not specified, we consider that
21608
+ # the customer wants to enable them wherever applicable.
21458
21609
  class GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec
21459
21610
  include Google::Apis::Core::Hashable
21460
21611
 
@@ -24476,12 +24627,11 @@ module Google
24476
24627
  # Search for Documents. * `view-item`: Detailed page view of a Document. * `view-
24477
24628
  # item-list`: View of a panel or ordered list of Documents. * `view-home-page`:
24478
24629
  # View of the home page. * `view-category-page`: View of a category page, e.g.
24479
- # Home > Men > Jeans * `add-feedback`: Add a user feedback. Retail-related
24480
- # values: * `add-to-cart`: Add an item(s) to cart, e.g. in Retail online
24481
- # shopping * `purchase`: Purchase an item(s) Media-related values: * `media-play`
24482
- # : Start/resume watching a video, playing a song, etc. * `media-complete`:
24483
- # Finished or stopped midway through a video, song, etc. Custom conversion value:
24484
- # * `conversion`: Customer defined conversion event.
24630
+ # Home > Men > Jeans Retail-related values: * `add-to-cart`: Add an item(s) to
24631
+ # cart, e.g. in Retail online shopping * `purchase`: Purchase an item(s) Media-
24632
+ # related values: * `media-play`: Start/resume watching a video, playing a song,
24633
+ # etc. * `media-complete`: Finished or stopped midway through a video, song, etc.
24634
+ # Custom conversion value: * `conversion`: Customer defined conversion event.
24485
24635
  # Corresponds to the JSON property `eventType`
24486
24636
  # @return [String]
24487
24637
  attr_accessor :event_type
@@ -25544,7 +25694,7 @@ module Google
25544
25694
  # * `model-selector` * `notebook-lm` * `people-search` * `people-search-org-
25545
25695
  # chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
25546
25696
  # personalization-memory` * `disable-image-generation` * `disable-video-
25547
- # generation`
25697
+ # generation` * `disable-onedrive-upload`
25548
25698
  # Corresponds to the JSON property `features`
25549
25699
  # @return [Hash<String,String>]
25550
25700
  attr_accessor :features
@@ -26561,6 +26711,12 @@ module Google
26561
26711
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaCmekConfig]
26562
26712
  attr_accessor :cmek_config
26563
26713
 
26714
+ # Optional. Configuration for configurable billing approach. See go/vais-
26715
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
26716
+ # Corresponds to the JSON property `configurableBillingApproach`
26717
+ # @return [String]
26718
+ attr_accessor :configurable_billing_approach
26719
+
26564
26720
  # Immutable. The content config of the data store. If this field is unset, the
26565
26721
  # server behavior defaults to ContentConfig.NO_CONTENT.
26566
26722
  # Corresponds to the JSON property `contentConfig`
@@ -26674,6 +26830,7 @@ module Google
26674
26830
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
26675
26831
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
26676
26832
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
26833
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
26677
26834
  @content_config = args[:content_config] if args.key?(:content_config)
26678
26835
  @create_time = args[:create_time] if args.key?(:create_time)
26679
26836
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -27346,7 +27503,7 @@ module Google
27346
27503
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
27347
27504
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
27348
27505
  # personalization-memory` * `disable-image-generation` * `disable-video-
27349
- # generation`
27506
+ # generation` * `disable-onedrive-upload`
27350
27507
  # Corresponds to the JSON property `features`
27351
27508
  # @return [Hash<String,String>]
27352
27509
  attr_accessor :features
@@ -29295,9 +29452,8 @@ module Google
29295
29452
  alias_method :safe_search?, :safe_search
29296
29453
 
29297
29454
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
29298
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
29299
- # specified, we consider that the customer wants to enable them wherever
29300
- # applicable.
29455
+ # model. By default if the SearchAddonSpec is not specified, we consider that
29456
+ # the customer wants to enable them wherever applicable.
29301
29457
  # Corresponds to the JSON property `searchAddonSpec`
29302
29458
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec]
29303
29459
  attr_accessor :search_addon_spec
@@ -30343,9 +30499,8 @@ module Google
30343
30499
  end
30344
30500
 
30345
30501
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
30346
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
30347
- # specified, we consider that the customer wants to enable them wherever
30348
- # applicable.
30502
+ # model. By default if the SearchAddonSpec is not specified, we consider that
30503
+ # the customer wants to enable them wherever applicable.
30349
30504
  class GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec
30350
30505
  include Google::Apis::Core::Hashable
30351
30506
 
@@ -32080,17 +32235,22 @@ module Google
32080
32235
  class GoogleCloudNotebooklmV1alphaUserContentAgentspaceContent
32081
32236
  include Google::Apis::Core::Hashable
32082
32237
 
32083
- # Optional. The full document name in Agentspace.
32238
+ # Optional. The full resource name of the Agentspace document. Format: `projects/
32239
+ # `project`/locations/`location`/collections/`collection`/dataStores/`data_store`
32240
+ # /branches/`branch`/documents/`document_id``.
32084
32241
  # Corresponds to the JSON property `documentName`
32085
32242
  # @return [String]
32086
32243
  attr_accessor :document_name
32087
32244
 
32088
- # Optional. Engine to verify the permission of the document.
32245
+ # Optional. Engine to verify the permission of the document. Format: `projects/`
32246
+ # project`/locations/`location`/collections/`collection`/engines/`engine``.
32089
32247
  # Corresponds to the JSON property `engineName`
32090
32248
  # @return [String]
32091
32249
  attr_accessor :engine_name
32092
32250
 
32093
- # Optional. The full idea name for IdeaForge.
32251
+ # Optional. Resource name of the idea forge instance. Format: `projects/`project`
32252
+ # /locations/`location`/collections/`collection`/engines/`engine`/sessions/`
32253
+ # session`/ideaForgeInstances/`instance``
32094
32254
  # Corresponds to the JSON property `ideaforgeIdeaName`
32095
32255
  # @return [String]
32096
32256
  attr_accessor :ideaforge_idea_name
@@ -32262,6 +32422,13 @@ module Google
32262
32422
  # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation>]
32263
32423
  attr_accessor :operations
32264
32424
 
32425
+ # Unordered list. Unreachable resources. Populated when the request sets `
32426
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
32427
+ # when attempting to list all resources across all supported locations.
32428
+ # Corresponds to the JSON property `unreachable`
32429
+ # @return [Array<String>]
32430
+ attr_accessor :unreachable
32431
+
32265
32432
  def initialize(**args)
32266
32433
  update!(**args)
32267
32434
  end
@@ -32270,6 +32437,7 @@ module Google
32270
32437
  def update!(**args)
32271
32438
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
32272
32439
  @operations = args[:operations] if args.key?(:operations)
32440
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
32273
32441
  end
32274
32442
  end
32275
32443
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.77.0"
19
+ GEM_VERSION = "0.78.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250918"
25
+ REVISION = "20250924"
26
26
  end
27
27
  end
28
28
  end