@@ -540,6 +540,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
540540 # The standard list page size.
541541 # @param [String] page_token
542542 # The standard list page token.
543+ # @param [Boolean] return_partial_success
544+ # When set to `true`, operations that are reachable are returned as normal, and
545+ # those that are unreachable are returned in the [ListOperationsResponse.
546+ # unreachable] field. This can only be `true` when reading across collections e.
547+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
548+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
549+ # explicitly documented otherwise in service or product specific documentation.
543550 # @param [String] fields
544551 # Selector specifying which fields to include in a partial response.
545552 # @param [String] quota_user
@@ -557,14 +564,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
557564 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
558565 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
559566 # @raise [Google::Apis::AuthorizationError] Authorization is required
560- def list_project_location_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
567+ 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 )
561568 command = make_simple_command ( :get , 'v1alpha1/{+name}/operations' , options )
562569 command . response_representation = Google ::Apis ::DatastreamV1alpha1 ::ListOperationsResponse ::Representation
563570 command . response_class = Google ::Apis ::DatastreamV1alpha1 ::ListOperationsResponse
564571 command . params [ 'name' ] = name unless name . nil?
565572 command . query [ 'filter' ] = filter unless filter . nil?
566573 command . query [ 'pageSize' ] = page_size unless page_size . nil?
567574 command . query [ 'pageToken' ] = page_token unless page_token . nil?
575+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
568576 command . query [ 'fields' ] = fields unless fields . nil?
569577 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
570578 execute_or_queue_command ( command , &block )
0 commit comments