google-apis-discoveryengine_v1 0.52.0 → 0.53.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: a4ed80df8b439756205a6fd24f39dfafb254ecb0bb9dd14ef96813b6b6dd4ce8
4
- data.tar.gz: e5e144b064fa1f021be0a1a4fc8dd78f7f75f8155eb490ff7708890eb0900510
3
+ metadata.gz: 3ad24c319572965e3e3932d45fb982b3c421af72d2bc02702c2d50125a9ea633
4
+ data.tar.gz: 88d075ea49e0579c3cf103a5be6c169bfeca010931a93049b2d7877d6bd7449a
5
5
  SHA512:
6
- metadata.gz: bb3cf9e8361f9b7a982ba900eeea3383d268c4f8e14975f3a6e39fcb35eed933a1e7ae8a0fad0d3156202b97c5e5ddd4dd29c136263f4d27cecedbd1f688b006
7
- data.tar.gz: 516c5350c5e31581a70fbea41df6058d93f0f5c40e71cfb5a7491a63590ec72b23464e740fa5d551d2fa5d8e1a296dc0a884da8fcadbfc3a7f1e5130b9bca96b
6
+ metadata.gz: 95bda152204d725195afef0350b37dbf1dd5728a0f3d88c8c3f0bbd25bd8f9e97b4158d2249261f6feec8ebe8b50147c42ad1adc49579b3cb9182d9ce9290261
7
+ data.tar.gz: 90622cc5582f3402d39a6aa05772dbdd32b78153eb79a7783625bd88502c4b4ecd90d9ec4c792908a60d4c077e7f9ea4a82bc3c3fe9f4b51f01808926fd3a4eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.53.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
3
7
  ### v0.52.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250918
@@ -1463,12 +1463,7 @@ module Google
1463
1463
  class GoogleCloudDiscoveryengineV1ActionConfig
1464
1464
  include Google::Apis::Core::Hashable
1465
1465
 
1466
- # Required. Params needed to support actions in the format of (Key, Value) pairs.
1467
- # Required parameters for sources that support OAUTH, i.e. `gmail`, `
1468
- # google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
1469
- # client_id` * Value: type STRING. The client ID for the service provider to
1470
- # identify your application. * Key: `client_secret` * Value:type STRING. The
1471
- # client secret generated by the application's authorization server.
1466
+ # Optional. Action parameters in structured json format.
1472
1467
  # Corresponds to the JSON property `actionParams`
1473
1468
  # @return [Hash<String,Object>]
1474
1469
  attr_accessor :action_params
@@ -1480,6 +1475,11 @@ module Google
1480
1475
  attr_accessor :is_action_configured
1481
1476
  alias_method :is_action_configured?, :is_action_configured
1482
1477
 
1478
+ # Optional. Action parameters in json string format.
1479
+ # Corresponds to the JSON property `jsonActionParams`
1480
+ # @return [String]
1481
+ attr_accessor :json_action_params
1482
+
1483
1483
  # Optional. The Service Directory resource name (projects/*/locations/*/
1484
1484
  # namespaces/*/services/*) representing a VPC network endpoint used to connect
1485
1485
  # to the data source's `instance_uri`, defined in DataConnector.params. Required
@@ -1503,6 +1503,7 @@ module Google
1503
1503
  def update!(**args)
1504
1504
  @action_params = args[:action_params] if args.key?(:action_params)
1505
1505
  @is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
1506
+ @json_action_params = args[:json_action_params] if args.key?(:json_action_params)
1506
1507
  @service_name = args[:service_name] if args.key?(:service_name)
1507
1508
  @use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
1508
1509
  end
@@ -4484,6 +4485,11 @@ module Google
4484
4485
  class GoogleCloudDiscoveryengineV1BapConfig
4485
4486
  include Google::Apis::Core::Hashable
4486
4487
 
4488
+ # Optional. The actions enabled on the associated BAP connection.
4489
+ # Corresponds to the JSON property `enabledActions`
4490
+ # @return [Array<String>]
4491
+ attr_accessor :enabled_actions
4492
+
4487
4493
  # Required. The supported connector modes for the associated BAP connection.
4488
4494
  # Corresponds to the JSON property `supportedConnectorModes`
4489
4495
  # @return [Array<String>]
@@ -4495,6 +4501,7 @@ module Google
4495
4501
 
4496
4502
  # Update properties of this object
4497
4503
  def update!(**args)
4504
+ @enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
4498
4505
  @supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
4499
4506
  end
4500
4507
  end
@@ -6986,6 +6993,12 @@ module Google
6986
6993
  # @return [Hash<String,Object>]
6987
6994
  attr_accessor :auth_params
6988
6995
 
6996
+ # Optional. Any authentication parameters specific to EUA connectors in json
6997
+ # string format.
6998
+ # Corresponds to the JSON property `jsonAuthParams`
6999
+ # @return [String]
7000
+ attr_accessor :json_auth_params
7001
+
6989
7002
  # Tenant information for a connector source. This includes some of the same
6990
7003
  # information stored in the Credential message, but is limited to only what is
6991
7004
  # needed to provide a list of accessible tenants to the user.
@@ -7001,6 +7014,7 @@ module Google
7001
7014
  def update!(**args)
7002
7015
  @additional_params = args[:additional_params] if args.key?(:additional_params)
7003
7016
  @auth_params = args[:auth_params] if args.key?(:auth_params)
7017
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
7004
7018
  @tenant = args[:tenant] if args.key?(:tenant)
7005
7019
  end
7006
7020
  end
@@ -7015,11 +7029,17 @@ module Google
7015
7029
  # @return [Hash<String,Object>]
7016
7030
  attr_accessor :additional_params
7017
7031
 
7018
- # Optional. Any authentication parameters specific to FEDERATED.
7032
+ # Optional. Any authentication parameters specific to FEDERATED connectors.
7019
7033
  # Corresponds to the JSON property `authParams`
7020
7034
  # @return [Hash<String,Object>]
7021
7035
  attr_accessor :auth_params
7022
7036
 
7037
+ # Optional. Any authentication parameters specific to FEDERATED connectors in
7038
+ # json string format.
7039
+ # Corresponds to the JSON property `jsonAuthParams`
7040
+ # @return [String]
7041
+ attr_accessor :json_auth_params
7042
+
7023
7043
  def initialize(**args)
7024
7044
  update!(**args)
7025
7045
  end
@@ -7028,6 +7048,7 @@ module Google
7028
7048
  def update!(**args)
7029
7049
  @additional_params = args[:additional_params] if args.key?(:additional_params)
7030
7050
  @auth_params = args[:auth_params] if args.key?(:auth_params)
7051
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
7031
7052
  end
7032
7053
  end
7033
7054
 
@@ -7192,6 +7213,12 @@ module Google
7192
7213
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig]
7193
7214
  attr_accessor :cmek_config
7194
7215
 
7216
+ # Optional. Configuration for configurable billing approach. See go/vais-
7217
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
7218
+ # Corresponds to the JSON property `configurableBillingApproach`
7219
+ # @return [String]
7220
+ attr_accessor :configurable_billing_approach
7221
+
7195
7222
  # Immutable. The content config of the data store. If this field is unset, the
7196
7223
  # server behavior defaults to ContentConfig.NO_CONTENT.
7197
7224
  # Corresponds to the JSON property `contentConfig`
@@ -7295,6 +7322,7 @@ module Google
7295
7322
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
7296
7323
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
7297
7324
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
7325
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
7298
7326
  @content_config = args[:content_config] if args.key?(:content_config)
7299
7327
  @create_time = args[:create_time] if args.key?(:create_time)
7300
7328
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -8383,7 +8411,7 @@ module Google
8383
8411
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
8384
8412
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
8385
8413
  # personalization-memory` * `disable-image-generation` * `disable-video-
8386
- # generation`
8414
+ # generation` * `disable-onedrive-upload`
8387
8415
  # Corresponds to the JSON property `features`
8388
8416
  # @return [Hash<String,String>]
8389
8417
  attr_accessor :features
@@ -11741,6 +11769,12 @@ module Google
11741
11769
  # @return [String]
11742
11770
  attr_accessor :language_code
11743
11771
 
11772
+ # Specification to enable natural language understanding capabilities for search
11773
+ # requests.
11774
+ # Corresponds to the JSON property `naturalLanguageQueryUnderstandingSpec`
11775
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec]
11776
+ attr_accessor :natural_language_query_understanding_spec
11777
+
11744
11778
  # A 0-indexed integer that specifies the current offset (that is, starting
11745
11779
  # result location, amongst the Documents deemed by the API as relevant) in
11746
11780
  # search results. This field is only considered if page_token is unset. If this
@@ -11967,6 +12001,7 @@ module Google
11967
12001
  @filter = args[:filter] if args.key?(:filter)
11968
12002
  @image_query = args[:image_query] if args.key?(:image_query)
11969
12003
  @language_code = args[:language_code] if args.key?(:language_code)
12004
+ @natural_language_query_understanding_spec = args[:natural_language_query_understanding_spec] if args.key?(:natural_language_query_understanding_spec)
11970
12005
  @offset = args[:offset] if args.key?(:offset)
11971
12006
  @one_box_page_size = args[:one_box_page_size] if args.key?(:one_box_page_size)
11972
12007
  @order_by = args[:order_by] if args.key?(:order_by)
@@ -12713,6 +12748,61 @@ module Google
12713
12748
  end
12714
12749
  end
12715
12750
 
12751
+ # Specification to enable natural language understanding capabilities for search
12752
+ # requests.
12753
+ class GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec
12754
+ include Google::Apis::Core::Hashable
12755
+
12756
+ # Optional. Allowlist of fields that can be used for natural language filter
12757
+ # extraction. By default, if this is unspecified, all indexable fields are
12758
+ # eligible for natural language filter extraction (but are not guaranteed to be
12759
+ # used). If any fields are specified in allowed_field_names, only the fields
12760
+ # that are both marked as indexable in the schema and specified in the allowlist
12761
+ # will be eligible for natural language filter extraction. Note: for multi-
12762
+ # datastore search, this is not yet supported, and will be ignored.
12763
+ # Corresponds to the JSON property `allowedFieldNames`
12764
+ # @return [Array<String>]
12765
+ attr_accessor :allowed_field_names
12766
+
12767
+ # Optional. Controls behavior of how extracted filters are applied to the search.
12768
+ # The default behavior depends on the request. For single datastore structured
12769
+ # search, the default is `HARD_FILTER`. For multi-datastore search, the default
12770
+ # behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
12771
+ # filters, and the `SOFT_BOOST` setting will not affect them. This field is only
12772
+ # used if SearchRequest.natural_language_query_understanding_spec.
12773
+ # filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
12774
+ # Corresponds to the JSON property `extractedFilterBehavior`
12775
+ # @return [String]
12776
+ attr_accessor :extracted_filter_behavior
12777
+
12778
+ # The condition under which filter extraction should occur. Server behavior
12779
+ # defaults to `DISABLED`.
12780
+ # Corresponds to the JSON property `filterExtractionCondition`
12781
+ # @return [String]
12782
+ attr_accessor :filter_extraction_condition
12783
+
12784
+ # Field names used for location-based filtering, where geolocation filters are
12785
+ # detected in natural language search queries. Only valid when the
12786
+ # FilterExtractionCondition is set to `ENABLED`. If this field is set, it
12787
+ # overrides the field names set in ServingConfig.
12788
+ # geo_search_query_detection_field_names.
12789
+ # Corresponds to the JSON property `geoSearchQueryDetectionFieldNames`
12790
+ # @return [Array<String>]
12791
+ attr_accessor :geo_search_query_detection_field_names
12792
+
12793
+ def initialize(**args)
12794
+ update!(**args)
12795
+ end
12796
+
12797
+ # Update properties of this object
12798
+ def update!(**args)
12799
+ @allowed_field_names = args[:allowed_field_names] if args.key?(:allowed_field_names)
12800
+ @extracted_filter_behavior = args[:extracted_filter_behavior] if args.key?(:extracted_filter_behavior)
12801
+ @filter_extraction_condition = args[:filter_extraction_condition] if args.key?(:filter_extraction_condition)
12802
+ @geo_search_query_detection_field_names = args[:geo_search_query_detection_field_names] if args.key?(:geo_search_query_detection_field_names)
12803
+ end
12804
+ end
12805
+
12716
12806
  # Specification to determine under which conditions query expansion should occur.
12717
12807
  class GoogleCloudDiscoveryengineV1SearchRequestQueryExpansionSpec
12718
12808
  include Google::Apis::Core::Hashable
@@ -14858,12 +14948,11 @@ module Google
14858
14948
  # Search for Documents. * `view-item`: Detailed page view of a Document. * `view-
14859
14949
  # item-list`: View of a panel or ordered list of Documents. * `view-home-page`:
14860
14950
  # View of the home page. * `view-category-page`: View of a category page, e.g.
14861
- # Home > Men > Jeans * `add-feedback`: Add a user feedback. Retail-related
14862
- # values: * `add-to-cart`: Add an item(s) to cart, e.g. in Retail online
14863
- # shopping * `purchase`: Purchase an item(s) Media-related values: * `media-play`
14864
- # : Start/resume watching a video, playing a song, etc. * `media-complete`:
14865
- # Finished or stopped midway through a video, song, etc. Custom conversion value:
14866
- # * `conversion`: Customer defined conversion event.
14951
+ # Home > Men > Jeans Retail-related values: * `add-to-cart`: Add an item(s) to
14952
+ # cart, e.g. in Retail online shopping * `purchase`: Purchase an item(s) Media-
14953
+ # related values: * `media-play`: Start/resume watching a video, playing a song,
14954
+ # etc. * `media-complete`: Finished or stopped midway through a video, song, etc.
14955
+ # Custom conversion value: * `conversion`: Customer defined conversion event.
14867
14956
  # Corresponds to the JSON property `eventType`
14868
14957
  # @return [String]
14869
14958
  attr_accessor :event_type
@@ -15160,12 +15249,7 @@ module Google
15160
15249
  class GoogleCloudDiscoveryengineV1alphaActionConfig
15161
15250
  include Google::Apis::Core::Hashable
15162
15251
 
15163
- # Required. Params needed to support actions in the format of (Key, Value) pairs.
15164
- # Required parameters for sources that support OAUTH, i.e. `gmail`, `
15165
- # google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
15166
- # client_id` * Value: type STRING. The client ID for the service provider to
15167
- # identify your application. * Key: `client_secret` * Value:type STRING. The
15168
- # client secret generated by the application's authorization server.
15252
+ # Optional. Action parameters in structured json format.
15169
15253
  # Corresponds to the JSON property `actionParams`
15170
15254
  # @return [Hash<String,Object>]
15171
15255
  attr_accessor :action_params
@@ -15177,6 +15261,11 @@ module Google
15177
15261
  attr_accessor :is_action_configured
15178
15262
  alias_method :is_action_configured?, :is_action_configured
15179
15263
 
15264
+ # Optional. Action parameters in json string format.
15265
+ # Corresponds to the JSON property `jsonActionParams`
15266
+ # @return [String]
15267
+ attr_accessor :json_action_params
15268
+
15180
15269
  # Optional. The Service Directory resource name (projects/*/locations/*/
15181
15270
  # namespaces/*/services/*) representing a VPC network endpoint used to connect
15182
15271
  # to the data source's `instance_uri`, defined in DataConnector.params. Required
@@ -15200,6 +15289,7 @@ module Google
15200
15289
  def update!(**args)
15201
15290
  @action_params = args[:action_params] if args.key?(:action_params)
15202
15291
  @is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
15292
+ @json_action_params = args[:json_action_params] if args.key?(:json_action_params)
15203
15293
  @service_name = args[:service_name] if args.key?(:service_name)
15204
15294
  @use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
15205
15295
  end
@@ -16045,6 +16135,11 @@ module Google
16045
16135
  class GoogleCloudDiscoveryengineV1alphaBapConfig
16046
16136
  include Google::Apis::Core::Hashable
16047
16137
 
16138
+ # Optional. The actions enabled on the associated BAP connection.
16139
+ # Corresponds to the JSON property `enabledActions`
16140
+ # @return [Array<String>]
16141
+ attr_accessor :enabled_actions
16142
+
16048
16143
  # Required. The supported connector modes for the associated BAP connection.
16049
16144
  # Corresponds to the JSON property `supportedConnectorModes`
16050
16145
  # @return [Array<String>]
@@ -16056,6 +16151,7 @@ module Google
16056
16151
 
16057
16152
  # Update properties of this object
16058
16153
  def update!(**args)
16154
+ @enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
16059
16155
  @supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
16060
16156
  end
16061
16157
  end
@@ -17418,6 +17514,12 @@ module Google
17418
17514
  # @return [Hash<String,Object>]
17419
17515
  attr_accessor :auth_params
17420
17516
 
17517
+ # Optional. Any authentication parameters specific to EUA connectors in json
17518
+ # string format.
17519
+ # Corresponds to the JSON property `jsonAuthParams`
17520
+ # @return [String]
17521
+ attr_accessor :json_auth_params
17522
+
17421
17523
  # Tenant information for a connector source. This includes some of the same
17422
17524
  # information stored in the Credential message, but is limited to only what is
17423
17525
  # needed to provide a list of accessible tenants to the user.
@@ -17433,6 +17535,7 @@ module Google
17433
17535
  def update!(**args)
17434
17536
  @additional_params = args[:additional_params] if args.key?(:additional_params)
17435
17537
  @auth_params = args[:auth_params] if args.key?(:auth_params)
17538
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
17436
17539
  @tenant = args[:tenant] if args.key?(:tenant)
17437
17540
  end
17438
17541
  end
@@ -17447,11 +17550,17 @@ module Google
17447
17550
  # @return [Hash<String,Object>]
17448
17551
  attr_accessor :additional_params
17449
17552
 
17450
- # Optional. Any authentication parameters specific to FEDERATED.
17553
+ # Optional. Any authentication parameters specific to FEDERATED connectors.
17451
17554
  # Corresponds to the JSON property `authParams`
17452
17555
  # @return [Hash<String,Object>]
17453
17556
  attr_accessor :auth_params
17454
17557
 
17558
+ # Optional. Any authentication parameters specific to FEDERATED connectors in
17559
+ # json string format.
17560
+ # Corresponds to the JSON property `jsonAuthParams`
17561
+ # @return [String]
17562
+ attr_accessor :json_auth_params
17563
+
17455
17564
  def initialize(**args)
17456
17565
  update!(**args)
17457
17566
  end
@@ -17460,6 +17569,7 @@ module Google
17460
17569
  def update!(**args)
17461
17570
  @additional_params = args[:additional_params] if args.key?(:additional_params)
17462
17571
  @auth_params = args[:auth_params] if args.key?(:auth_params)
17572
+ @json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
17463
17573
  end
17464
17574
  end
17465
17575
 
@@ -17624,6 +17734,12 @@ module Google
17624
17734
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCmekConfig]
17625
17735
  attr_accessor :cmek_config
17626
17736
 
17737
+ # Optional. Configuration for configurable billing approach. See go/vais-
17738
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
17739
+ # Corresponds to the JSON property `configurableBillingApproach`
17740
+ # @return [String]
17741
+ attr_accessor :configurable_billing_approach
17742
+
17627
17743
  # Immutable. The content config of the data store. If this field is unset, the
17628
17744
  # server behavior defaults to ContentConfig.NO_CONTENT.
17629
17745
  # Corresponds to the JSON property `contentConfig`
@@ -17742,6 +17858,7 @@ module Google
17742
17858
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
17743
17859
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
17744
17860
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
17861
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
17745
17862
  @content_config = args[:content_config] if args.key?(:content_config)
17746
17863
  @create_time = args[:create_time] if args.key?(:create_time)
17747
17864
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -18555,7 +18672,7 @@ module Google
18555
18672
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
18556
18673
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
18557
18674
  # personalization-memory` * `disable-image-generation` * `disable-video-
18558
- # generation`
18675
+ # generation` * `disable-onedrive-upload`
18559
18676
  # Corresponds to the JSON property `features`
18560
18677
  # @return [Hash<String,String>]
18561
18678
  attr_accessor :features
@@ -21358,9 +21475,8 @@ module Google
21358
21475
  alias_method :safe_search?, :safe_search
21359
21476
 
21360
21477
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
21361
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
21362
- # specified, we consider that the customer wants to enable them wherever
21363
- # applicable.
21478
+ # model. By default if the SearchAddonSpec is not specified, we consider that
21479
+ # the customer wants to enable them wherever applicable.
21364
21480
  # Corresponds to the JSON property `searchAddonSpec`
21365
21481
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec]
21366
21482
  attr_accessor :search_addon_spec
@@ -22417,9 +22533,8 @@ module Google
22417
22533
  end
22418
22534
 
22419
22535
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
22420
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
22421
- # specified, we consider that the customer wants to enable them wherever
22422
- # applicable.
22536
+ # model. By default if the SearchAddonSpec is not specified, we consider that
22537
+ # the customer wants to enable them wherever applicable.
22423
22538
  class GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec
22424
22539
  include Google::Apis::Core::Hashable
22425
22540
 
@@ -24232,6 +24347,12 @@ module Google
24232
24347
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCmekConfig]
24233
24348
  attr_accessor :cmek_config
24234
24349
 
24350
+ # Optional. Configuration for configurable billing approach. See go/vais-
24351
+ # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
24352
+ # Corresponds to the JSON property `configurableBillingApproach`
24353
+ # @return [String]
24354
+ attr_accessor :configurable_billing_approach
24355
+
24235
24356
  # Immutable. The content config of the data store. If this field is unset, the
24236
24357
  # server behavior defaults to ContentConfig.NO_CONTENT.
24237
24358
  # Corresponds to the JSON property `contentConfig`
@@ -24345,6 +24466,7 @@ module Google
24345
24466
  @advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
24346
24467
  @billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
24347
24468
  @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
24469
+ @configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
24348
24470
  @content_config = args[:content_config] if args.key?(:content_config)
24349
24471
  @create_time = args[:create_time] if args.key?(:create_time)
24350
24472
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
@@ -25017,7 +25139,7 @@ module Google
25017
25139
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
25018
25140
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
25019
25141
  # personalization-memory` * `disable-image-generation` * `disable-video-
25020
- # generation`
25142
+ # generation` * `disable-onedrive-upload`
25021
25143
  # Corresponds to the JSON property `features`
25022
25144
  # @return [Hash<String,String>]
25023
25145
  attr_accessor :features
@@ -26966,9 +27088,8 @@ module Google
26966
27088
  alias_method :safe_search?, :safe_search
26967
27089
 
26968
27090
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
26969
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
26970
- # specified, we consider that the customer wants to enable them wherever
26971
- # applicable.
27091
+ # model. By default if the SearchAddonSpec is not specified, we consider that
27092
+ # the customer wants to enable them wherever applicable.
26972
27093
  # Corresponds to the JSON property `searchAddonSpec`
26973
27094
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec]
26974
27095
  attr_accessor :search_addon_spec
@@ -28014,9 +28135,8 @@ module Google
28014
28135
  end
28015
28136
 
28016
28137
  # SearchAddonSpec is used to disable add-ons for search as per new repricing
28017
- # model. Refer go/vais-repricing-prd. By default if the SearchAddonSpec is not
28018
- # specified, we consider that the customer wants to enable them wherever
28019
- # applicable.
28138
+ # model. By default if the SearchAddonSpec is not specified, we consider that
28139
+ # the customer wants to enable them wherever applicable.
28020
28140
  class GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec
28021
28141
  include Google::Apis::Core::Hashable
28022
28142
 
@@ -28730,6 +28850,13 @@ module Google
28730
28850
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation>]
28731
28851
  attr_accessor :operations
28732
28852
 
28853
+ # Unordered list. Unreachable resources. Populated when the request sets `
28854
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
28855
+ # when attempting to list all resources across all supported locations.
28856
+ # Corresponds to the JSON property `unreachable`
28857
+ # @return [Array<String>]
28858
+ attr_accessor :unreachable
28859
+
28733
28860
  def initialize(**args)
28734
28861
  update!(**args)
28735
28862
  end
@@ -28738,6 +28865,7 @@ module Google
28738
28865
  def update!(**args)
28739
28866
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
28740
28867
  @operations = args[:operations] if args.key?(:operations)
28868
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
28741
28869
  end
28742
28870
  end
28743
28871
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.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
@@ -2008,6 +2008,12 @@ module Google
2008
2008
  include Google::Apis::Core::JsonObjectSupport
2009
2009
  end
2010
2010
 
2011
+ class GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec
2012
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2013
+
2014
+ include Google::Apis::Core::JsonObjectSupport
2015
+ end
2016
+
2011
2017
  class GoogleCloudDiscoveryengineV1SearchRequestQueryExpansionSpec
2012
2018
  class Representation < Google::Apis::Core::JsonRepresentation; end
2013
2019
 
@@ -4920,6 +4926,7 @@ module Google
4920
4926
  class Representation < Google::Apis::Core::JsonRepresentation
4921
4927
  hash :action_params, as: 'actionParams'
4922
4928
  property :is_action_configured, as: 'isActionConfigured'
4929
+ property :json_action_params, as: 'jsonActionParams'
4923
4930
  property :service_name, as: 'serviceName'
4924
4931
  property :use_static_secrets, as: 'useStaticSecrets'
4925
4932
  end
@@ -5797,6 +5804,7 @@ module Google
5797
5804
  class GoogleCloudDiscoveryengineV1BapConfig
5798
5805
  # @private
5799
5806
  class Representation < Google::Apis::Core::JsonRepresentation
5807
+ collection :enabled_actions, as: 'enabledActions'
5800
5808
  collection :supported_connector_modes, as: 'supportedConnectorModes'
5801
5809
  end
5802
5810
  end
@@ -6448,6 +6456,7 @@ module Google
6448
6456
  class Representation < Google::Apis::Core::JsonRepresentation
6449
6457
  hash :additional_params, as: 'additionalParams'
6450
6458
  hash :auth_params, as: 'authParams'
6459
+ property :json_auth_params, as: 'jsonAuthParams'
6451
6460
  property :tenant, as: 'tenant', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Tenant, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Tenant::Representation
6452
6461
 
6453
6462
  end
@@ -6458,6 +6467,7 @@ module Google
6458
6467
  class Representation < Google::Apis::Core::JsonRepresentation
6459
6468
  hash :additional_params, as: 'additionalParams'
6460
6469
  hash :auth_params, as: 'authParams'
6470
+ property :json_auth_params, as: 'jsonAuthParams'
6461
6471
  end
6462
6472
  end
6463
6473
 
@@ -6505,6 +6515,7 @@ module Google
6505
6515
 
6506
6516
  property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig::Representation
6507
6517
 
6518
+ property :configurable_billing_approach, as: 'configurableBillingApproach'
6508
6519
  property :content_config, as: 'contentConfig'
6509
6520
  property :create_time, as: 'createTime'
6510
6521
  property :default_schema_id, as: 'defaultSchemaId'
@@ -7783,6 +7794,8 @@ module Google
7783
7794
  property :image_query, as: 'imageQuery', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestImageQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestImageQuery::Representation
7784
7795
 
7785
7796
  property :language_code, as: 'languageCode'
7797
+ property :natural_language_query_understanding_spec, as: 'naturalLanguageQueryUnderstandingSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec::Representation
7798
+
7786
7799
  property :offset, as: 'offset'
7787
7800
  property :one_box_page_size, as: 'oneBoxPageSize'
7788
7801
  property :order_by, as: 'orderBy'
@@ -7974,6 +7987,16 @@ module Google
7974
7987
  end
7975
7988
  end
7976
7989
 
7990
+ class GoogleCloudDiscoveryengineV1SearchRequestNaturalLanguageQueryUnderstandingSpec
7991
+ # @private
7992
+ class Representation < Google::Apis::Core::JsonRepresentation
7993
+ collection :allowed_field_names, as: 'allowedFieldNames'
7994
+ property :extracted_filter_behavior, as: 'extractedFilterBehavior'
7995
+ property :filter_extraction_condition, as: 'filterExtractionCondition'
7996
+ collection :geo_search_query_detection_field_names, as: 'geoSearchQueryDetectionFieldNames'
7997
+ end
7998
+ end
7999
+
7977
8000
  class GoogleCloudDiscoveryengineV1SearchRequestQueryExpansionSpec
7978
8001
  # @private
7979
8002
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8620,6 +8643,7 @@ module Google
8620
8643
  class Representation < Google::Apis::Core::JsonRepresentation
8621
8644
  hash :action_params, as: 'actionParams'
8622
8645
  property :is_action_configured, as: 'isActionConfigured'
8646
+ property :json_action_params, as: 'jsonActionParams'
8623
8647
  property :service_name, as: 'serviceName'
8624
8648
  property :use_static_secrets, as: 'useStaticSecrets'
8625
8649
  end
@@ -8877,6 +8901,7 @@ module Google
8877
8901
  class GoogleCloudDiscoveryengineV1alphaBapConfig
8878
8902
  # @private
8879
8903
  class Representation < Google::Apis::Core::JsonRepresentation
8904
+ collection :enabled_actions, as: 'enabledActions'
8880
8905
  collection :supported_connector_modes, as: 'supportedConnectorModes'
8881
8906
  end
8882
8907
  end
@@ -9224,6 +9249,7 @@ module Google
9224
9249
  class Representation < Google::Apis::Core::JsonRepresentation
9225
9250
  hash :additional_params, as: 'additionalParams'
9226
9251
  hash :auth_params, as: 'authParams'
9252
+ property :json_auth_params, as: 'jsonAuthParams'
9227
9253
  property :tenant, as: 'tenant', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaTenant, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaTenant::Representation
9228
9254
 
9229
9255
  end
@@ -9234,6 +9260,7 @@ module Google
9234
9260
  class Representation < Google::Apis::Core::JsonRepresentation
9235
9261
  hash :additional_params, as: 'additionalParams'
9236
9262
  hash :auth_params, as: 'authParams'
9263
+ property :json_auth_params, as: 'jsonAuthParams'
9237
9264
  end
9238
9265
  end
9239
9266
 
@@ -9281,6 +9308,7 @@ module Google
9281
9308
 
9282
9309
  property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCmekConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCmekConfig::Representation
9283
9310
 
9311
+ property :configurable_billing_approach, as: 'configurableBillingApproach'
9284
9312
  property :content_config, as: 'contentConfig'
9285
9313
  property :create_time, as: 'createTime'
9286
9314
  property :default_schema_id, as: 'defaultSchemaId'
@@ -11036,6 +11064,7 @@ module Google
11036
11064
 
11037
11065
  property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCmekConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCmekConfig::Representation
11038
11066
 
11067
+ property :configurable_billing_approach, as: 'configurableBillingApproach'
11039
11068
  property :content_config, as: 'contentConfig'
11040
11069
  property :create_time, as: 'createTime'
11041
11070
  property :default_schema_id, as: 'defaultSchemaId'
@@ -12219,6 +12248,7 @@ module Google
12219
12248
  property :next_page_token, as: 'nextPageToken'
12220
12249
  collection :operations, as: 'operations', class: Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation, decorator: Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
12221
12250
 
12251
+ collection :unreachable, as: 'unreachable'
12222
12252
  end
12223
12253
  end
12224
12254
 
@@ -648,6 +648,13 @@ module Google
648
648
  # The standard list page size.
649
649
  # @param [String] page_token
650
650
  # The standard list page token.
651
+ # @param [Boolean] return_partial_success
652
+ # When set to `true`, operations that are reachable are returned as normal, and
653
+ # those that are unreachable are returned in the [ListOperationsResponse.
654
+ # unreachable] field. This can only be `true` when reading across collections e.
655
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
656
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
657
+ # explicitly documented otherwise in service or product specific documentation.
651
658
  # @param [String] fields
652
659
  # Selector specifying which fields to include in a partial response.
653
660
  # @param [String] quota_user
@@ -665,7 +672,7 @@ module Google
665
672
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
666
673
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
667
674
  # @raise [Google::Apis::AuthorizationError] Authorization is required
668
- def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
675
+ def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
669
676
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
670
677
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
671
678
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -673,6 +680,7 @@ module Google
673
680
  command.query['filter'] = filter unless filter.nil?
674
681
  command.query['pageSize'] = page_size unless page_size.nil?
675
682
  command.query['pageToken'] = page_token unless page_token.nil?
683
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
676
684
  command.query['fields'] = fields unless fields.nil?
677
685
  command.query['quotaUser'] = quota_user unless quota_user.nil?
678
686
  execute_or_queue_command(command, &block)
@@ -1430,6 +1438,13 @@ module Google
1430
1438
  # The standard list page size.
1431
1439
  # @param [String] page_token
1432
1440
  # The standard list page token.
1441
+ # @param [Boolean] return_partial_success
1442
+ # When set to `true`, operations that are reachable are returned as normal, and
1443
+ # those that are unreachable are returned in the [ListOperationsResponse.
1444
+ # unreachable] field. This can only be `true` when reading across collections e.
1445
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1446
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1447
+ # explicitly documented otherwise in service or product specific documentation.
1433
1448
  # @param [String] fields
1434
1449
  # Selector specifying which fields to include in a partial response.
1435
1450
  # @param [String] quota_user
@@ -1447,7 +1462,7 @@ module Google
1447
1462
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1448
1463
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1449
1464
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1450
- def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1465
+ def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1451
1466
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1452
1467
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
1453
1468
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -1455,6 +1470,7 @@ module Google
1455
1470
  command.query['filter'] = filter unless filter.nil?
1456
1471
  command.query['pageSize'] = page_size unless page_size.nil?
1457
1472
  command.query['pageToken'] = page_token unless page_token.nil?
1473
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1458
1474
  command.query['fields'] = fields unless fields.nil?
1459
1475
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1460
1476
  execute_or_queue_command(command, &block)
@@ -2059,6 +2075,13 @@ module Google
2059
2075
  # The standard list page size.
2060
2076
  # @param [String] page_token
2061
2077
  # The standard list page token.
2078
+ # @param [Boolean] return_partial_success
2079
+ # When set to `true`, operations that are reachable are returned as normal, and
2080
+ # those that are unreachable are returned in the [ListOperationsResponse.
2081
+ # unreachable] field. This can only be `true` when reading across collections e.
2082
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2083
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2084
+ # explicitly documented otherwise in service or product specific documentation.
2062
2085
  # @param [String] fields
2063
2086
  # Selector specifying which fields to include in a partial response.
2064
2087
  # @param [String] quota_user
@@ -2076,7 +2099,7 @@ module Google
2076
2099
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2077
2100
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2078
2101
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2079
- def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2102
+ def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
2080
2103
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
2081
2104
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
2082
2105
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -2084,6 +2107,7 @@ module Google
2084
2107
  command.query['filter'] = filter unless filter.nil?
2085
2108
  command.query['pageSize'] = page_size unless page_size.nil?
2086
2109
  command.query['pageToken'] = page_token unless page_token.nil?
2110
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2087
2111
  command.query['fields'] = fields unless fields.nil?
2088
2112
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2089
2113
  execute_or_queue_command(command, &block)
@@ -2130,6 +2154,13 @@ module Google
2130
2154
  # The standard list page size.
2131
2155
  # @param [String] page_token
2132
2156
  # The standard list page token.
2157
+ # @param [Boolean] return_partial_success
2158
+ # When set to `true`, operations that are reachable are returned as normal, and
2159
+ # those that are unreachable are returned in the [ListOperationsResponse.
2160
+ # unreachable] field. This can only be `true` when reading across collections e.
2161
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2162
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2163
+ # explicitly documented otherwise in service or product specific documentation.
2133
2164
  # @param [String] fields
2134
2165
  # Selector specifying which fields to include in a partial response.
2135
2166
  # @param [String] quota_user
@@ -2147,7 +2178,7 @@ module Google
2147
2178
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2148
2179
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2149
2180
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2150
- def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2181
+ def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
2151
2182
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
2152
2183
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
2153
2184
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -2155,6 +2186,7 @@ module Google
2155
2186
  command.query['filter'] = filter unless filter.nil?
2156
2187
  command.query['pageSize'] = page_size unless page_size.nil?
2157
2188
  command.query['pageToken'] = page_token unless page_token.nil?
2189
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2158
2190
  command.query['fields'] = fields unless fields.nil?
2159
2191
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2160
2192
  execute_or_queue_command(command, &block)
@@ -2388,6 +2420,13 @@ module Google
2388
2420
  # The standard list page size.
2389
2421
  # @param [String] page_token
2390
2422
  # The standard list page token.
2423
+ # @param [Boolean] return_partial_success
2424
+ # When set to `true`, operations that are reachable are returned as normal, and
2425
+ # those that are unreachable are returned in the [ListOperationsResponse.
2426
+ # unreachable] field. This can only be `true` when reading across collections e.
2427
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2428
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2429
+ # explicitly documented otherwise in service or product specific documentation.
2391
2430
  # @param [String] fields
2392
2431
  # Selector specifying which fields to include in a partial response.
2393
2432
  # @param [String] quota_user
@@ -2405,7 +2444,7 @@ module Google
2405
2444
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2406
2445
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2407
2446
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2408
- def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2447
+ def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
2409
2448
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
2410
2449
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
2411
2450
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -2413,6 +2452,7 @@ module Google
2413
2452
  command.query['filter'] = filter unless filter.nil?
2414
2453
  command.query['pageSize'] = page_size unless page_size.nil?
2415
2454
  command.query['pageToken'] = page_token unless page_token.nil?
2455
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2416
2456
  command.query['fields'] = fields unless fields.nil?
2417
2457
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2418
2458
  execute_or_queue_command(command, &block)
@@ -3113,6 +3153,13 @@ module Google
3113
3153
  # The standard list page size.
3114
3154
  # @param [String] page_token
3115
3155
  # The standard list page token.
3156
+ # @param [Boolean] return_partial_success
3157
+ # When set to `true`, operations that are reachable are returned as normal, and
3158
+ # those that are unreachable are returned in the [ListOperationsResponse.
3159
+ # unreachable] field. This can only be `true` when reading across collections e.
3160
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3161
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3162
+ # explicitly documented otherwise in service or product specific documentation.
3116
3163
  # @param [String] fields
3117
3164
  # Selector specifying which fields to include in a partial response.
3118
3165
  # @param [String] quota_user
@@ -3130,7 +3177,7 @@ module Google
3130
3177
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3131
3178
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3132
3179
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3133
- def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3180
+ def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
3134
3181
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
3135
3182
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
3136
3183
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -3138,6 +3185,7 @@ module Google
3138
3185
  command.query['filter'] = filter unless filter.nil?
3139
3186
  command.query['pageSize'] = page_size unless page_size.nil?
3140
3187
  command.query['pageToken'] = page_token unless page_token.nil?
3188
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3141
3189
  command.query['fields'] = fields unless fields.nil?
3142
3190
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3143
3191
  execute_or_queue_command(command, &block)
@@ -3509,6 +3557,13 @@ module Google
3509
3557
  # The standard list page size.
3510
3558
  # @param [String] page_token
3511
3559
  # The standard list page token.
3560
+ # @param [Boolean] return_partial_success
3561
+ # When set to `true`, operations that are reachable are returned as normal, and
3562
+ # those that are unreachable are returned in the [ListOperationsResponse.
3563
+ # unreachable] field. This can only be `true` when reading across collections e.
3564
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3565
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3566
+ # explicitly documented otherwise in service or product specific documentation.
3512
3567
  # @param [String] fields
3513
3568
  # Selector specifying which fields to include in a partial response.
3514
3569
  # @param [String] quota_user
@@ -3526,7 +3581,7 @@ module Google
3526
3581
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3527
3582
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3528
3583
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3529
- def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3584
+ def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
3530
3585
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
3531
3586
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
3532
3587
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -3534,6 +3589,7 @@ module Google
3534
3589
  command.query['filter'] = filter unless filter.nil?
3535
3590
  command.query['pageSize'] = page_size unless page_size.nil?
3536
3591
  command.query['pageToken'] = page_token unless page_token.nil?
3592
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3537
3593
  command.query['fields'] = fields unless fields.nil?
3538
3594
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3539
3595
  execute_or_queue_command(command, &block)
@@ -4607,6 +4663,13 @@ module Google
4607
4663
  # The standard list page size.
4608
4664
  # @param [String] page_token
4609
4665
  # The standard list page token.
4666
+ # @param [Boolean] return_partial_success
4667
+ # When set to `true`, operations that are reachable are returned as normal, and
4668
+ # those that are unreachable are returned in the [ListOperationsResponse.
4669
+ # unreachable] field. This can only be `true` when reading across collections e.
4670
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
4671
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
4672
+ # explicitly documented otherwise in service or product specific documentation.
4610
4673
  # @param [String] fields
4611
4674
  # Selector specifying which fields to include in a partial response.
4612
4675
  # @param [String] quota_user
@@ -4624,7 +4687,7 @@ module Google
4624
4687
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4625
4688
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4626
4689
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4627
- def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
4690
+ def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
4628
4691
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
4629
4692
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
4630
4693
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -4632,6 +4695,7 @@ module Google
4632
4695
  command.query['filter'] = filter unless filter.nil?
4633
4696
  command.query['pageSize'] = page_size unless page_size.nil?
4634
4697
  command.query['pageToken'] = page_token unless page_token.nil?
4698
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
4635
4699
  command.query['fields'] = fields unless fields.nil?
4636
4700
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4637
4701
  execute_or_queue_command(command, &block)
@@ -5149,6 +5213,13 @@ module Google
5149
5213
  # The standard list page size.
5150
5214
  # @param [String] page_token
5151
5215
  # The standard list page token.
5216
+ # @param [Boolean] return_partial_success
5217
+ # When set to `true`, operations that are reachable are returned as normal, and
5218
+ # those that are unreachable are returned in the [ListOperationsResponse.
5219
+ # unreachable] field. This can only be `true` when reading across collections e.
5220
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
5221
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
5222
+ # explicitly documented otherwise in service or product specific documentation.
5152
5223
  # @param [String] fields
5153
5224
  # Selector specifying which fields to include in a partial response.
5154
5225
  # @param [String] quota_user
@@ -5166,7 +5237,7 @@ module Google
5166
5237
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5167
5238
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5168
5239
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5169
- def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
5240
+ def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
5170
5241
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
5171
5242
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
5172
5243
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -5174,6 +5245,7 @@ module Google
5174
5245
  command.query['filter'] = filter unless filter.nil?
5175
5246
  command.query['pageSize'] = page_size unless page_size.nil?
5176
5247
  command.query['pageToken'] = page_token unless page_token.nil?
5248
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
5177
5249
  command.query['fields'] = fields unless fields.nil?
5178
5250
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5179
5251
  execute_or_queue_command(command, &block)
@@ -5896,6 +5968,13 @@ module Google
5896
5968
  # The standard list page size.
5897
5969
  # @param [String] page_token
5898
5970
  # The standard list page token.
5971
+ # @param [Boolean] return_partial_success
5972
+ # When set to `true`, operations that are reachable are returned as normal, and
5973
+ # those that are unreachable are returned in the [ListOperationsResponse.
5974
+ # unreachable] field. This can only be `true` when reading across collections e.
5975
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
5976
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
5977
+ # explicitly documented otherwise in service or product specific documentation.
5899
5978
  # @param [String] fields
5900
5979
  # Selector specifying which fields to include in a partial response.
5901
5980
  # @param [String] quota_user
@@ -5913,7 +5992,7 @@ module Google
5913
5992
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5914
5993
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5915
5994
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5916
- def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
5995
+ def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
5917
5996
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
5918
5997
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
5919
5998
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -5921,6 +6000,7 @@ module Google
5921
6000
  command.query['filter'] = filter unless filter.nil?
5922
6001
  command.query['pageSize'] = page_size unless page_size.nil?
5923
6002
  command.query['pageToken'] = page_token unless page_token.nil?
6003
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
5924
6004
  command.query['fields'] = fields unless fields.nil?
5925
6005
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5926
6006
  execute_or_queue_command(command, &block)
@@ -6493,6 +6573,13 @@ module Google
6493
6573
  # The standard list page size.
6494
6574
  # @param [String] page_token
6495
6575
  # The standard list page token.
6576
+ # @param [Boolean] return_partial_success
6577
+ # When set to `true`, operations that are reachable are returned as normal, and
6578
+ # those that are unreachable are returned in the [ListOperationsResponse.
6579
+ # unreachable] field. This can only be `true` when reading across collections e.
6580
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
6581
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
6582
+ # explicitly documented otherwise in service or product specific documentation.
6496
6583
  # @param [String] fields
6497
6584
  # Selector specifying which fields to include in a partial response.
6498
6585
  # @param [String] quota_user
@@ -6510,7 +6597,7 @@ module Google
6510
6597
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6511
6598
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6512
6599
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6513
- def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
6600
+ def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
6514
6601
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
6515
6602
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
6516
6603
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -6518,6 +6605,7 @@ module Google
6518
6605
  command.query['filter'] = filter unless filter.nil?
6519
6606
  command.query['pageSize'] = page_size unless page_size.nil?
6520
6607
  command.query['pageToken'] = page_token unless page_token.nil?
6608
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
6521
6609
  command.query['fields'] = fields unless fields.nil?
6522
6610
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6523
6611
  execute_or_queue_command(command, &block)
@@ -6564,6 +6652,13 @@ module Google
6564
6652
  # The standard list page size.
6565
6653
  # @param [String] page_token
6566
6654
  # The standard list page token.
6655
+ # @param [Boolean] return_partial_success
6656
+ # When set to `true`, operations that are reachable are returned as normal, and
6657
+ # those that are unreachable are returned in the [ListOperationsResponse.
6658
+ # unreachable] field. This can only be `true` when reading across collections e.
6659
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
6660
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
6661
+ # explicitly documented otherwise in service or product specific documentation.
6567
6662
  # @param [String] fields
6568
6663
  # Selector specifying which fields to include in a partial response.
6569
6664
  # @param [String] quota_user
@@ -6581,7 +6676,7 @@ module Google
6581
6676
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6582
6677
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6583
6678
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6584
- def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
6679
+ def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
6585
6680
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
6586
6681
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
6587
6682
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -6589,6 +6684,7 @@ module Google
6589
6684
  command.query['filter'] = filter unless filter.nil?
6590
6685
  command.query['pageSize'] = page_size unless page_size.nil?
6591
6686
  command.query['pageToken'] = page_token unless page_token.nil?
6687
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
6592
6688
  command.query['fields'] = fields unless fields.nil?
6593
6689
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6594
6690
  execute_or_queue_command(command, &block)
@@ -8258,6 +8354,13 @@ module Google
8258
8354
  # The standard list page size.
8259
8355
  # @param [String] page_token
8260
8356
  # The standard list page token.
8357
+ # @param [Boolean] return_partial_success
8358
+ # When set to `true`, operations that are reachable are returned as normal, and
8359
+ # those that are unreachable are returned in the [ListOperationsResponse.
8360
+ # unreachable] field. This can only be `true` when reading across collections e.
8361
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
8362
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
8363
+ # explicitly documented otherwise in service or product specific documentation.
8261
8364
  # @param [String] fields
8262
8365
  # Selector specifying which fields to include in a partial response.
8263
8366
  # @param [String] quota_user
@@ -8275,7 +8378,7 @@ module Google
8275
8378
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8276
8379
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8277
8380
  # @raise [Google::Apis::AuthorizationError] Authorization is required
8278
- def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8381
+ def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
8279
8382
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
8280
8383
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
8281
8384
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -8283,6 +8386,7 @@ module Google
8283
8386
  command.query['filter'] = filter unless filter.nil?
8284
8387
  command.query['pageSize'] = page_size unless page_size.nil?
8285
8388
  command.query['pageToken'] = page_token unless page_token.nil?
8389
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
8286
8390
  command.query['fields'] = fields unless fields.nil?
8287
8391
  command.query['quotaUser'] = quota_user unless quota_user.nil?
8288
8392
  execute_or_queue_command(command, &block)
@@ -8329,6 +8433,13 @@ module Google
8329
8433
  # The standard list page size.
8330
8434
  # @param [String] page_token
8331
8435
  # The standard list page token.
8436
+ # @param [Boolean] return_partial_success
8437
+ # When set to `true`, operations that are reachable are returned as normal, and
8438
+ # those that are unreachable are returned in the [ListOperationsResponse.
8439
+ # unreachable] field. This can only be `true` when reading across collections e.
8440
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
8441
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
8442
+ # explicitly documented otherwise in service or product specific documentation.
8332
8443
  # @param [String] fields
8333
8444
  # Selector specifying which fields to include in a partial response.
8334
8445
  # @param [String] quota_user
@@ -8346,7 +8457,7 @@ module Google
8346
8457
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8347
8458
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8348
8459
  # @raise [Google::Apis::AuthorizationError] Authorization is required
8349
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8460
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
8350
8461
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
8351
8462
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
8352
8463
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -8354,6 +8465,7 @@ module Google
8354
8465
  command.query['filter'] = filter unless filter.nil?
8355
8466
  command.query['pageSize'] = page_size unless page_size.nil?
8356
8467
  command.query['pageToken'] = page_token unless page_token.nil?
8468
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
8357
8469
  command.query['fields'] = fields unless fields.nil?
8358
8470
  command.query['quotaUser'] = quota_user unless quota_user.nil?
8359
8471
  execute_or_queue_command(command, &block)
@@ -8724,6 +8836,13 @@ module Google
8724
8836
  # The standard list page size.
8725
8837
  # @param [String] page_token
8726
8838
  # The standard list page token.
8839
+ # @param [Boolean] return_partial_success
8840
+ # When set to `true`, operations that are reachable are returned as normal, and
8841
+ # those that are unreachable are returned in the [ListOperationsResponse.
8842
+ # unreachable] field. This can only be `true` when reading across collections e.
8843
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
8844
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
8845
+ # explicitly documented otherwise in service or product specific documentation.
8727
8846
  # @param [String] fields
8728
8847
  # Selector specifying which fields to include in a partial response.
8729
8848
  # @param [String] quota_user
@@ -8741,7 +8860,7 @@ module Google
8741
8860
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8742
8861
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8743
8862
  # @raise [Google::Apis::AuthorizationError] Authorization is required
8744
- def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8863
+ def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
8745
8864
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
8746
8865
  command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
8747
8866
  command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
@@ -8749,6 +8868,7 @@ module Google
8749
8868
  command.query['filter'] = filter unless filter.nil?
8750
8869
  command.query['pageSize'] = page_size unless page_size.nil?
8751
8870
  command.query['pageToken'] = page_token unless page_token.nil?
8871
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
8752
8872
  command.query['fields'] = fields unless fields.nil?
8753
8873
  command.query['quotaUser'] = quota_user unless quota_user.nil?
8754
8874
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.53.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: