google-apis-discoveryengine_v1alpha 0.76.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.
@@ -127,6 +127,45 @@ module Google
127
127
  execute_or_queue_command(command, &block)
128
128
  end
129
129
 
130
+ # Updates the editable settings of a Discovery Engine Project.
131
+ # @param [String] name
132
+ # Output only. Full resource name of the project, for example `projects/`project`
133
+ # `. Note that when making requests, project number and project id are both
134
+ # acceptable, but the server will always respond in project number.
135
+ # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject] google_cloud_discoveryengine_v1alpha_project_object
136
+ # @param [String] update_mask
137
+ # Optional. The list of fields to update. Supported fields: * `
138
+ # customer_provided_config`
139
+ # @param [String] fields
140
+ # Selector specifying which fields to include in a partial response.
141
+ # @param [String] quota_user
142
+ # Available to use for quota purposes for server-side applications. Can be any
143
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
144
+ # @param [Google::Apis::RequestOptions] options
145
+ # Request-specific options
146
+ #
147
+ # @yield [result, err] Result & error if block supplied
148
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject] parsed result object
149
+ # @yieldparam err [StandardError] error object if request failed
150
+ #
151
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject]
152
+ #
153
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
154
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
155
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
156
+ def patch_project(name, google_cloud_discoveryengine_v1alpha_project_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
157
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
158
+ command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject::Representation
159
+ command.request_object = google_cloud_discoveryengine_v1alpha_project_object
160
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject::Representation
161
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject
162
+ command.params['name'] = name unless name.nil?
163
+ command.query['updateMask'] = update_mask unless update_mask.nil?
164
+ command.query['fields'] = fields unless fields.nil?
165
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
166
+ execute_or_queue_command(command, &block)
167
+ end
168
+
130
169
  # Provisions the project resource. During the process, related systems will get
131
170
  # prepared and initialized. Caller must read the [Terms for data use](https://
132
171
  # cloud.google.com/retail/data-use-terms), and optionally specify in request to
@@ -448,6 +487,54 @@ module Google
448
487
  execute_or_queue_command(command, &block)
449
488
  end
450
489
 
490
+ # Creates a Collection and sets up the DataConnector for it. To stop a
491
+ # DataConnector after setup, use the CollectionService.DeleteCollection method.
492
+ # @param [String] parent
493
+ # Required. The parent of Collection, in the format of `projects/`project`/
494
+ # locations/`location``.
495
+ # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnector] google_cloud_discoveryengine_v1alpha_data_connector_object
496
+ # @param [String] collection_display_name
497
+ # Required. The display name of the Collection. Should be human readable, used
498
+ # to display collections in the Console Dashboard. UTF-8 encoded string with
499
+ # limit of 1024 characters.
500
+ # @param [String] collection_id
501
+ # Required. The ID to use for the Collection, which will become the final
502
+ # component of the Collection's resource name. A new Collection is created as
503
+ # part of the DataConnector setup. DataConnector is a singleton resource under
504
+ # Collection, managing all DataStores of the Collection. This field must conform
505
+ # to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length
506
+ # limit of 63 characters. Otherwise, an INVALID_ARGUMENT error is returned.
507
+ # @param [String] fields
508
+ # Selector specifying which fields to include in a partial response.
509
+ # @param [String] quota_user
510
+ # Available to use for quota purposes for server-side applications. Can be any
511
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
512
+ # @param [Google::Apis::RequestOptions] options
513
+ # Request-specific options
514
+ #
515
+ # @yield [result, err] Result & error if block supplied
516
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation] parsed result object
517
+ # @yieldparam err [StandardError] error object if request failed
518
+ #
519
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation]
520
+ #
521
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
522
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
523
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
524
+ def set_project_location_up_data_connector_v2(parent, google_cloud_discoveryengine_v1alpha_data_connector_object = nil, collection_display_name: nil, collection_id: nil, fields: nil, quota_user: nil, options: nil, &block)
525
+ command = make_simple_command(:post, 'v1alpha/{+parent}:setUpDataConnectorV2', options)
526
+ command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnector::Representation
527
+ command.request_object = google_cloud_discoveryengine_v1alpha_data_connector_object
528
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation::Representation
529
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation
530
+ command.params['parent'] = parent unless parent.nil?
531
+ command.query['collectionDisplayName'] = collection_display_name unless collection_display_name.nil?
532
+ command.query['collectionId'] = collection_id unless collection_id.nil?
533
+ command.query['fields'] = fields unless fields.nil?
534
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
535
+ execute_or_queue_command(command, &block)
536
+ end
537
+
451
538
  # Default ACL configuration for use in a location of a customer's project.
452
539
  # Updates will only reflect to new data stores. Existing data stores will still
453
540
  # use the old value.
@@ -894,8 +981,8 @@ module Google
894
981
  # generate and return a new access token and its details. Takes the access token
895
982
  # from cache if available. Rotates the stored refresh token if needed. Uses the
896
983
  # end user identity to return the user specific access token. Does *not* return
897
- # the credentials configured by the administrator. Used by Agentspace action
898
- # execution and Agentspace UI.
984
+ # the credentials configured by the administrator. Used by action execution and
985
+ # UI.
899
986
  # @param [String] name
900
987
  # Required. The resource name of the connector for which a token is queried.
901
988
  # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAcquireAccessTokenRequest] google_cloud_discoveryengine_v1alpha_acquire_access_token_request_object
@@ -1082,6 +1169,13 @@ module Google
1082
1169
  # The standard list page size.
1083
1170
  # @param [String] page_token
1084
1171
  # The standard list page token.
1172
+ # @param [Boolean] return_partial_success
1173
+ # When set to `true`, operations that are reachable are returned as normal, and
1174
+ # those that are unreachable are returned in the [ListOperationsResponse.
1175
+ # unreachable] field. This can only be `true` when reading across collections e.
1176
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1177
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1178
+ # explicitly documented otherwise in service or product specific documentation.
1085
1179
  # @param [String] fields
1086
1180
  # Selector specifying which fields to include in a partial response.
1087
1181
  # @param [String] quota_user
@@ -1099,7 +1193,7 @@ module Google
1099
1193
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1100
1194
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1101
1195
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1102
- 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)
1196
+ 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)
1103
1197
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
1104
1198
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
1105
1199
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -1107,6 +1201,7 @@ module Google
1107
1201
  command.query['filter'] = filter unless filter.nil?
1108
1202
  command.query['pageSize'] = page_size unless page_size.nil?
1109
1203
  command.query['pageToken'] = page_token unless page_token.nil?
1204
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1110
1205
  command.query['fields'] = fields unless fields.nil?
1111
1206
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1112
1207
  execute_or_queue_command(command, &block)
@@ -1576,6 +1671,77 @@ module Google
1576
1671
  execute_or_queue_command(command, &block)
1577
1672
  end
1578
1673
 
1674
+ # Retrieves a Branch.
1675
+ # @param [String] name
1676
+ # Required. The name of the branch to retrieve. Format: `projects/*/locations/
1677
+ # global/dataStores/default_data_store/branches/some_branch_id`. "default_branch"
1678
+ # can be used as a special branch_id, it returns the default branch that has
1679
+ # been set for the document.
1680
+ # @param [String] view
1681
+ # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
1682
+ # if unspecified.
1683
+ # @param [String] fields
1684
+ # Selector specifying which fields to include in a partial response.
1685
+ # @param [String] quota_user
1686
+ # Available to use for quota purposes for server-side applications. Can be any
1687
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1688
+ # @param [Google::Apis::RequestOptions] options
1689
+ # Request-specific options
1690
+ #
1691
+ # @yield [result, err] Result & error if block supplied
1692
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch] parsed result object
1693
+ # @yieldparam err [StandardError] error object if request failed
1694
+ #
1695
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch]
1696
+ #
1697
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1698
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1699
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1700
+ def get_project_location_collection_data_store_branch(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1701
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
1702
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch::Representation
1703
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch
1704
+ command.params['name'] = name unless name.nil?
1705
+ command.query['view'] = view unless view.nil?
1706
+ command.query['fields'] = fields unless fields.nil?
1707
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1708
+ execute_or_queue_command(command, &block)
1709
+ end
1710
+
1711
+ # Lists all Branchs under the specified parent DataStore.
1712
+ # @param [String] parent
1713
+ # Required. The parent data store resource name.
1714
+ # @param [String] view
1715
+ # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
1716
+ # if unspecified.
1717
+ # @param [String] fields
1718
+ # Selector specifying which fields to include in a partial response.
1719
+ # @param [String] quota_user
1720
+ # Available to use for quota purposes for server-side applications. Can be any
1721
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1722
+ # @param [Google::Apis::RequestOptions] options
1723
+ # Request-specific options
1724
+ #
1725
+ # @yield [result, err] Result & error if block supplied
1726
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse] parsed result object
1727
+ # @yieldparam err [StandardError] error object if request failed
1728
+ #
1729
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse]
1730
+ #
1731
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1732
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1733
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1734
+ def list_project_location_collection_data_store_branches(parent, view: nil, fields: nil, quota_user: nil, options: nil, &block)
1735
+ command = make_simple_command(:get, 'v1alpha/{+parent}/branches', options)
1736
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse::Representation
1737
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse
1738
+ command.params['parent'] = parent unless parent.nil?
1739
+ command.query['view'] = view unless view.nil?
1740
+ command.query['fields'] = fields unless fields.nil?
1741
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1742
+ execute_or_queue_command(command, &block)
1743
+ end
1744
+
1579
1745
  # Creates a Document.
1580
1746
  # @param [String] parent
1581
1747
  # Required. The parent resource name, such as `projects/`project`/locations/`
@@ -2062,6 +2228,13 @@ module Google
2062
2228
  # The standard list page size.
2063
2229
  # @param [String] page_token
2064
2230
  # The standard list page token.
2231
+ # @param [Boolean] return_partial_success
2232
+ # When set to `true`, operations that are reachable are returned as normal, and
2233
+ # those that are unreachable are returned in the [ListOperationsResponse.
2234
+ # unreachable] field. This can only be `true` when reading across collections e.
2235
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2236
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2237
+ # explicitly documented otherwise in service or product specific documentation.
2065
2238
  # @param [String] fields
2066
2239
  # Selector specifying which fields to include in a partial response.
2067
2240
  # @param [String] quota_user
@@ -2079,7 +2252,7 @@ module Google
2079
2252
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2080
2253
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2081
2254
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2082
- 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)
2255
+ 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)
2083
2256
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
2084
2257
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
2085
2258
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -2087,6 +2260,7 @@ module Google
2087
2260
  command.query['filter'] = filter unless filter.nil?
2088
2261
  command.query['pageSize'] = page_size unless page_size.nil?
2089
2262
  command.query['pageToken'] = page_token unless page_token.nil?
2263
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2090
2264
  command.query['fields'] = fields unless fields.nil?
2091
2265
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2092
2266
  execute_or_queue_command(command, &block)
@@ -2691,6 +2865,13 @@ module Google
2691
2865
  # The standard list page size.
2692
2866
  # @param [String] page_token
2693
2867
  # The standard list page token.
2868
+ # @param [Boolean] return_partial_success
2869
+ # When set to `true`, operations that are reachable are returned as normal, and
2870
+ # those that are unreachable are returned in the [ListOperationsResponse.
2871
+ # unreachable] field. This can only be `true` when reading across collections e.
2872
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2873
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2874
+ # explicitly documented otherwise in service or product specific documentation.
2694
2875
  # @param [String] fields
2695
2876
  # Selector specifying which fields to include in a partial response.
2696
2877
  # @param [String] quota_user
@@ -2708,7 +2889,7 @@ module Google
2708
2889
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2709
2890
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2710
2891
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2711
- 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)
2892
+ 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)
2712
2893
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
2713
2894
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
2714
2895
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -2716,6 +2897,7 @@ module Google
2716
2897
  command.query['filter'] = filter unless filter.nil?
2717
2898
  command.query['pageSize'] = page_size unless page_size.nil?
2718
2899
  command.query['pageToken'] = page_token unless page_token.nil?
2900
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2719
2901
  command.query['fields'] = fields unless fields.nil?
2720
2902
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2721
2903
  execute_or_queue_command(command, &block)
@@ -2762,6 +2944,13 @@ module Google
2762
2944
  # The standard list page size.
2763
2945
  # @param [String] page_token
2764
2946
  # The standard list page token.
2947
+ # @param [Boolean] return_partial_success
2948
+ # When set to `true`, operations that are reachable are returned as normal, and
2949
+ # those that are unreachable are returned in the [ListOperationsResponse.
2950
+ # unreachable] field. This can only be `true` when reading across collections e.
2951
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2952
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2953
+ # explicitly documented otherwise in service or product specific documentation.
2765
2954
  # @param [String] fields
2766
2955
  # Selector specifying which fields to include in a partial response.
2767
2956
  # @param [String] quota_user
@@ -2779,7 +2968,7 @@ module Google
2779
2968
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2780
2969
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2781
2970
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2782
- 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)
2971
+ 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)
2783
2972
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
2784
2973
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
2785
2974
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -2787,6 +2976,7 @@ module Google
2787
2976
  command.query['filter'] = filter unless filter.nil?
2788
2977
  command.query['pageSize'] = page_size unless page_size.nil?
2789
2978
  command.query['pageToken'] = page_token unless page_token.nil?
2979
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2790
2980
  command.query['fields'] = fields unless fields.nil?
2791
2981
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2792
2982
  execute_or_queue_command(command, &block)
@@ -3020,6 +3210,13 @@ module Google
3020
3210
  # The standard list page size.
3021
3211
  # @param [String] page_token
3022
3212
  # The standard list page token.
3213
+ # @param [Boolean] return_partial_success
3214
+ # When set to `true`, operations that are reachable are returned as normal, and
3215
+ # those that are unreachable are returned in the [ListOperationsResponse.
3216
+ # unreachable] field. This can only be `true` when reading across collections e.
3217
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3218
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3219
+ # explicitly documented otherwise in service or product specific documentation.
3023
3220
  # @param [String] fields
3024
3221
  # Selector specifying which fields to include in a partial response.
3025
3222
  # @param [String] quota_user
@@ -3037,7 +3234,7 @@ module Google
3037
3234
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3038
3235
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3039
3236
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3040
- 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)
3237
+ 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)
3041
3238
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
3042
3239
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
3043
3240
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -3045,6 +3242,7 @@ module Google
3045
3242
  command.query['filter'] = filter unless filter.nil?
3046
3243
  command.query['pageSize'] = page_size unless page_size.nil?
3047
3244
  command.query['pageToken'] = page_token unless page_token.nil?
3245
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3048
3246
  command.query['fields'] = fields unless fields.nil?
3049
3247
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3050
3248
  execute_or_queue_command(command, &block)
@@ -3884,6 +4082,13 @@ module Google
3884
4082
  # The standard list page size.
3885
4083
  # @param [String] page_token
3886
4084
  # The standard list page token.
4085
+ # @param [Boolean] return_partial_success
4086
+ # When set to `true`, operations that are reachable are returned as normal, and
4087
+ # those that are unreachable are returned in the [ListOperationsResponse.
4088
+ # unreachable] field. This can only be `true` when reading across collections e.
4089
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
4090
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
4091
+ # explicitly documented otherwise in service or product specific documentation.
3887
4092
  # @param [String] fields
3888
4093
  # Selector specifying which fields to include in a partial response.
3889
4094
  # @param [String] quota_user
@@ -3901,7 +4106,7 @@ module Google
3901
4106
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3902
4107
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3903
4108
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3904
- 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)
4109
+ 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)
3905
4110
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
3906
4111
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
3907
4112
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -3909,6 +4114,7 @@ module Google
3909
4114
  command.query['filter'] = filter unless filter.nil?
3910
4115
  command.query['pageSize'] = page_size unless page_size.nil?
3911
4116
  command.query['pageToken'] = page_token unless page_token.nil?
4117
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3912
4118
  command.query['fields'] = fields unless fields.nil?
3913
4119
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3914
4120
  execute_or_queue_command(command, &block)
@@ -4280,6 +4486,13 @@ module Google
4280
4486
  # The standard list page size.
4281
4487
  # @param [String] page_token
4282
4488
  # The standard list page token.
4489
+ # @param [Boolean] return_partial_success
4490
+ # When set to `true`, operations that are reachable are returned as normal, and
4491
+ # those that are unreachable are returned in the [ListOperationsResponse.
4492
+ # unreachable] field. This can only be `true` when reading across collections e.
4493
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
4494
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
4495
+ # explicitly documented otherwise in service or product specific documentation.
4283
4496
  # @param [String] fields
4284
4497
  # Selector specifying which fields to include in a partial response.
4285
4498
  # @param [String] quota_user
@@ -4297,7 +4510,7 @@ module Google
4297
4510
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4298
4511
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4299
4512
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4300
- 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)
4513
+ 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)
4301
4514
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
4302
4515
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
4303
4516
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -4305,6 +4518,7 @@ module Google
4305
4518
  command.query['filter'] = filter unless filter.nil?
4306
4519
  command.query['pageSize'] = page_size unless page_size.nil?
4307
4520
  command.query['pageToken'] = page_token unless page_token.nil?
4521
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
4308
4522
  command.query['fields'] = fields unless fields.nil?
4309
4523
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4310
4524
  execute_or_queue_command(command, &block)
@@ -5560,6 +5774,13 @@ module Google
5560
5774
  # The standard list page size.
5561
5775
  # @param [String] page_token
5562
5776
  # The standard list page token.
5777
+ # @param [Boolean] return_partial_success
5778
+ # When set to `true`, operations that are reachable are returned as normal, and
5779
+ # those that are unreachable are returned in the [ListOperationsResponse.
5780
+ # unreachable] field. This can only be `true` when reading across collections e.
5781
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
5782
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
5783
+ # explicitly documented otherwise in service or product specific documentation.
5563
5784
  # @param [String] fields
5564
5785
  # Selector specifying which fields to include in a partial response.
5565
5786
  # @param [String] quota_user
@@ -5577,7 +5798,7 @@ module Google
5577
5798
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5578
5799
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5579
5800
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5580
- def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
5801
+ 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)
5581
5802
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
5582
5803
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
5583
5804
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -5585,6 +5806,7 @@ module Google
5585
5806
  command.query['filter'] = filter unless filter.nil?
5586
5807
  command.query['pageSize'] = page_size unless page_size.nil?
5587
5808
  command.query['pageToken'] = page_token unless page_token.nil?
5809
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
5588
5810
  command.query['fields'] = fields unless fields.nil?
5589
5811
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5590
5812
  execute_or_queue_command(command, &block)
@@ -6286,6 +6508,13 @@ module Google
6286
6508
  # The standard list page size.
6287
6509
  # @param [String] page_token
6288
6510
  # The standard list page token.
6511
+ # @param [Boolean] return_partial_success
6512
+ # When set to `true`, operations that are reachable are returned as normal, and
6513
+ # those that are unreachable are returned in the [ListOperationsResponse.
6514
+ # unreachable] field. This can only be `true` when reading across collections e.
6515
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
6516
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
6517
+ # explicitly documented otherwise in service or product specific documentation.
6289
6518
  # @param [String] fields
6290
6519
  # Selector specifying which fields to include in a partial response.
6291
6520
  # @param [String] quota_user
@@ -6303,7 +6532,7 @@ module Google
6303
6532
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6304
6533
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6305
6534
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6306
- def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
6535
+ 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)
6307
6536
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
6308
6537
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
6309
6538
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -6311,6 +6540,7 @@ module Google
6311
6540
  command.query['filter'] = filter unless filter.nil?
6312
6541
  command.query['pageSize'] = page_size unless page_size.nil?
6313
6542
  command.query['pageToken'] = page_token unless page_token.nil?
6543
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
6314
6544
  command.query['fields'] = fields unless fields.nil?
6315
6545
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6316
6546
  execute_or_queue_command(command, &block)
@@ -6745,6 +6975,77 @@ module Google
6745
6975
  execute_or_queue_command(command, &block)
6746
6976
  end
6747
6977
 
6978
+ # Retrieves a Branch.
6979
+ # @param [String] name
6980
+ # Required. The name of the branch to retrieve. Format: `projects/*/locations/
6981
+ # global/dataStores/default_data_store/branches/some_branch_id`. "default_branch"
6982
+ # can be used as a special branch_id, it returns the default branch that has
6983
+ # been set for the document.
6984
+ # @param [String] view
6985
+ # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
6986
+ # if unspecified.
6987
+ # @param [String] fields
6988
+ # Selector specifying which fields to include in a partial response.
6989
+ # @param [String] quota_user
6990
+ # Available to use for quota purposes for server-side applications. Can be any
6991
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6992
+ # @param [Google::Apis::RequestOptions] options
6993
+ # Request-specific options
6994
+ #
6995
+ # @yield [result, err] Result & error if block supplied
6996
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch] parsed result object
6997
+ # @yieldparam err [StandardError] error object if request failed
6998
+ #
6999
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch]
7000
+ #
7001
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7002
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7003
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7004
+ def get_project_location_data_store_branch(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
7005
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
7006
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch::Representation
7007
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch
7008
+ command.params['name'] = name unless name.nil?
7009
+ command.query['view'] = view unless view.nil?
7010
+ command.query['fields'] = fields unless fields.nil?
7011
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7012
+ execute_or_queue_command(command, &block)
7013
+ end
7014
+
7015
+ # Lists all Branchs under the specified parent DataStore.
7016
+ # @param [String] parent
7017
+ # Required. The parent data store resource name.
7018
+ # @param [String] view
7019
+ # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
7020
+ # if unspecified.
7021
+ # @param [String] fields
7022
+ # Selector specifying which fields to include in a partial response.
7023
+ # @param [String] quota_user
7024
+ # Available to use for quota purposes for server-side applications. Can be any
7025
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7026
+ # @param [Google::Apis::RequestOptions] options
7027
+ # Request-specific options
7028
+ #
7029
+ # @yield [result, err] Result & error if block supplied
7030
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse] parsed result object
7031
+ # @yieldparam err [StandardError] error object if request failed
7032
+ #
7033
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse]
7034
+ #
7035
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7036
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7037
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7038
+ def list_project_location_data_store_branches(parent, view: nil, fields: nil, quota_user: nil, options: nil, &block)
7039
+ command = make_simple_command(:get, 'v1alpha/{+parent}/branches', options)
7040
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse::Representation
7041
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListBranchesResponse
7042
+ command.params['parent'] = parent unless parent.nil?
7043
+ command.query['view'] = view unless view.nil?
7044
+ command.query['fields'] = fields unless fields.nil?
7045
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7046
+ execute_or_queue_command(command, &block)
7047
+ end
7048
+
6748
7049
  # Creates a Document.
6749
7050
  # @param [String] parent
6750
7051
  # Required. The parent resource name, such as `projects/`project`/locations/`
@@ -7231,6 +7532,13 @@ module Google
7231
7532
  # The standard list page size.
7232
7533
  # @param [String] page_token
7233
7534
  # The standard list page token.
7535
+ # @param [Boolean] return_partial_success
7536
+ # When set to `true`, operations that are reachable are returned as normal, and
7537
+ # those that are unreachable are returned in the [ListOperationsResponse.
7538
+ # unreachable] field. This can only be `true` when reading across collections e.
7539
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
7540
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
7541
+ # explicitly documented otherwise in service or product specific documentation.
7234
7542
  # @param [String] fields
7235
7543
  # Selector specifying which fields to include in a partial response.
7236
7544
  # @param [String] quota_user
@@ -7248,7 +7556,7 @@ module Google
7248
7556
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7249
7557
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7250
7558
  # @raise [Google::Apis::AuthorizationError] Authorization is required
7251
- 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)
7559
+ 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)
7252
7560
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
7253
7561
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
7254
7562
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -7256,6 +7564,7 @@ module Google
7256
7564
  command.query['filter'] = filter unless filter.nil?
7257
7565
  command.query['pageSize'] = page_size unless page_size.nil?
7258
7566
  command.query['pageToken'] = page_token unless page_token.nil?
7567
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
7259
7568
  command.query['fields'] = fields unless fields.nil?
7260
7569
  command.query['quotaUser'] = quota_user unless quota_user.nil?
7261
7570
  execute_or_queue_command(command, &block)
@@ -7828,6 +8137,13 @@ module Google
7828
8137
  # The standard list page size.
7829
8138
  # @param [String] page_token
7830
8139
  # The standard list page token.
8140
+ # @param [Boolean] return_partial_success
8141
+ # When set to `true`, operations that are reachable are returned as normal, and
8142
+ # those that are unreachable are returned in the [ListOperationsResponse.
8143
+ # unreachable] field. This can only be `true` when reading across collections e.
8144
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
8145
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
8146
+ # explicitly documented otherwise in service or product specific documentation.
7831
8147
  # @param [String] fields
7832
8148
  # Selector specifying which fields to include in a partial response.
7833
8149
  # @param [String] quota_user
@@ -7845,7 +8161,7 @@ module Google
7845
8161
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7846
8162
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7847
8163
  # @raise [Google::Apis::AuthorizationError] Authorization is required
7848
- 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)
8164
+ 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)
7849
8165
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
7850
8166
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
7851
8167
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -7853,6 +8169,7 @@ module Google
7853
8169
  command.query['filter'] = filter unless filter.nil?
7854
8170
  command.query['pageSize'] = page_size unless page_size.nil?
7855
8171
  command.query['pageToken'] = page_token unless page_token.nil?
8172
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
7856
8173
  command.query['fields'] = fields unless fields.nil?
7857
8174
  command.query['quotaUser'] = quota_user unless quota_user.nil?
7858
8175
  execute_or_queue_command(command, &block)
@@ -7899,6 +8216,13 @@ module Google
7899
8216
  # The standard list page size.
7900
8217
  # @param [String] page_token
7901
8218
  # The standard list page token.
8219
+ # @param [Boolean] return_partial_success
8220
+ # When set to `true`, operations that are reachable are returned as normal, and
8221
+ # those that are unreachable are returned in the [ListOperationsResponse.
8222
+ # unreachable] field. This can only be `true` when reading across collections e.
8223
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
8224
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
8225
+ # explicitly documented otherwise in service or product specific documentation.
7902
8226
  # @param [String] fields
7903
8227
  # Selector specifying which fields to include in a partial response.
7904
8228
  # @param [String] quota_user
@@ -7916,7 +8240,7 @@ module Google
7916
8240
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7917
8241
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7918
8242
  # @raise [Google::Apis::AuthorizationError] Authorization is required
7919
- def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8243
+ 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)
7920
8244
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
7921
8245
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
7922
8246
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -7924,6 +8248,7 @@ module Google
7924
8248
  command.query['filter'] = filter unless filter.nil?
7925
8249
  command.query['pageSize'] = page_size unless page_size.nil?
7926
8250
  command.query['pageToken'] = page_token unless page_token.nil?
8251
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
7927
8252
  command.query['fields'] = fields unless fields.nil?
7928
8253
  command.query['quotaUser'] = quota_user unless quota_user.nil?
7929
8254
  execute_or_queue_command(command, &block)
@@ -9900,6 +10225,13 @@ module Google
9900
10225
  # The standard list page size.
9901
10226
  # @param [String] page_token
9902
10227
  # The standard list page token.
10228
+ # @param [Boolean] return_partial_success
10229
+ # When set to `true`, operations that are reachable are returned as normal, and
10230
+ # those that are unreachable are returned in the [ListOperationsResponse.
10231
+ # unreachable] field. This can only be `true` when reading across collections e.
10232
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
10233
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
10234
+ # explicitly documented otherwise in service or product specific documentation.
9903
10235
  # @param [String] fields
9904
10236
  # Selector specifying which fields to include in a partial response.
9905
10237
  # @param [String] quota_user
@@ -9917,7 +10249,7 @@ module Google
9917
10249
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9918
10250
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9919
10251
  # @raise [Google::Apis::AuthorizationError] Authorization is required
9920
- 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)
10252
+ 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)
9921
10253
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
9922
10254
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
9923
10255
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -9925,6 +10257,7 @@ module Google
9925
10257
  command.query['filter'] = filter unless filter.nil?
9926
10258
  command.query['pageSize'] = page_size unless page_size.nil?
9927
10259
  command.query['pageToken'] = page_token unless page_token.nil?
10260
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
9928
10261
  command.query['fields'] = fields unless fields.nil?
9929
10262
  command.query['quotaUser'] = quota_user unless quota_user.nil?
9930
10263
  execute_or_queue_command(command, &block)
@@ -10346,6 +10679,13 @@ module Google
10346
10679
  # The standard list page size.
10347
10680
  # @param [String] page_token
10348
10681
  # The standard list page token.
10682
+ # @param [Boolean] return_partial_success
10683
+ # When set to `true`, operations that are reachable are returned as normal, and
10684
+ # those that are unreachable are returned in the [ListOperationsResponse.
10685
+ # unreachable] field. This can only be `true` when reading across collections e.
10686
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
10687
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
10688
+ # explicitly documented otherwise in service or product specific documentation.
10349
10689
  # @param [String] fields
10350
10690
  # Selector specifying which fields to include in a partial response.
10351
10691
  # @param [String] quota_user
@@ -10363,7 +10703,7 @@ module Google
10363
10703
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10364
10704
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10365
10705
  # @raise [Google::Apis::AuthorizationError] Authorization is required
10366
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
10706
+ 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)
10367
10707
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
10368
10708
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
10369
10709
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -10371,6 +10711,7 @@ module Google
10371
10711
  command.query['filter'] = filter unless filter.nil?
10372
10712
  command.query['pageSize'] = page_size unless page_size.nil?
10373
10713
  command.query['pageToken'] = page_token unless page_token.nil?
10714
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
10374
10715
  command.query['fields'] = fields unless fields.nil?
10375
10716
  command.query['quotaUser'] = quota_user unless quota_user.nil?
10376
10717
  execute_or_queue_command(command, &block)
@@ -11150,6 +11491,13 @@ module Google
11150
11491
  # The standard list page size.
11151
11492
  # @param [String] page_token
11152
11493
  # The standard list page token.
11494
+ # @param [Boolean] return_partial_success
11495
+ # When set to `true`, operations that are reachable are returned as normal, and
11496
+ # those that are unreachable are returned in the [ListOperationsResponse.
11497
+ # unreachable] field. This can only be `true` when reading across collections e.
11498
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
11499
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
11500
+ # explicitly documented otherwise in service or product specific documentation.
11153
11501
  # @param [String] fields
11154
11502
  # Selector specifying which fields to include in a partial response.
11155
11503
  # @param [String] quota_user
@@ -11167,7 +11515,7 @@ module Google
11167
11515
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11168
11516
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11169
11517
  # @raise [Google::Apis::AuthorizationError] Authorization is required
11170
- def list_project_location_user_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
11518
+ def list_project_location_user_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
11171
11519
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
11172
11520
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
11173
11521
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -11175,6 +11523,7 @@ module Google
11175
11523
  command.query['filter'] = filter unless filter.nil?
11176
11524
  command.query['pageSize'] = page_size unless page_size.nil?
11177
11525
  command.query['pageToken'] = page_token unless page_token.nil?
11526
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
11178
11527
  command.query['fields'] = fields unless fields.nil?
11179
11528
  command.query['quotaUser'] = quota_user unless quota_user.nil?
11180
11529
  execute_or_queue_command(command, &block)
@@ -11273,6 +11622,13 @@ module Google
11273
11622
  # The standard list page size.
11274
11623
  # @param [String] page_token
11275
11624
  # The standard list page token.
11625
+ # @param [Boolean] return_partial_success
11626
+ # When set to `true`, operations that are reachable are returned as normal, and
11627
+ # those that are unreachable are returned in the [ListOperationsResponse.
11628
+ # unreachable] field. This can only be `true` when reading across collections e.
11629
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
11630
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
11631
+ # explicitly documented otherwise in service or product specific documentation.
11276
11632
  # @param [String] fields
11277
11633
  # Selector specifying which fields to include in a partial response.
11278
11634
  # @param [String] quota_user
@@ -11290,7 +11646,7 @@ module Google
11290
11646
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11291
11647
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11292
11648
  # @raise [Google::Apis::AuthorizationError] Authorization is required
11293
- def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
11649
+ 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)
11294
11650
  command = make_simple_command(:get, 'v1alpha/{+name}/operations', options)
11295
11651
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse::Representation
11296
11652
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningListOperationsResponse
@@ -11298,6 +11654,7 @@ module Google
11298
11654
  command.query['filter'] = filter unless filter.nil?
11299
11655
  command.query['pageSize'] = page_size unless page_size.nil?
11300
11656
  command.query['pageToken'] = page_token unless page_token.nil?
11657
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
11301
11658
  command.query['fields'] = fields unless fields.nil?
11302
11659
  command.query['quotaUser'] = quota_user unless quota_user.nil?
11303
11660
  execute_or_queue_command(command, &block)