@@ -55,8 +55,8 @@ def initialize
5555 # @param [String] name
5656 # The resource that owns the locations collection, if applicable.
5757 # @param [Array<String>, String] extra_location_types
58- # Optional. Unless explicitly documented otherwise, don't use this unsupported
59- # field which is primarily intended for internal usage.
58+ # Optional. Do not use this field. It is unsupported and is ignored unless
59+ # explicitly documented otherwise. This is primarily for internal usage.
6060 # @param [String] filter
6161 # A filter to narrow down results to a preferred subset. The filtering language
6262 # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -311,6 +311,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
311311 # The standard list page size.
312312 # @param [String] page_token
313313 # The standard list page token.
314+ # @param [Boolean] return_partial_success
315+ # When set to `true`, operations that are reachable are returned as normal, and
316+ # those that are unreachable are returned in the [ListOperationsResponse.
317+ # unreachable] field. This can only be `true` when reading across collections e.
318+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
319+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
320+ # explicitly documented otherwise in service or product specific documentation.
314321 # @param [String] fields
315322 # Selector specifying which fields to include in a partial response.
316323 # @param [String] quota_user
@@ -328,14 +335,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
328335 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
329336 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
330337 # @raise [Google::Apis::AuthorizationError] Authorization is required
331- def list_project_location_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
338+ 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 )
332339 command = make_simple_command ( :get , 'v1beta1/{+name}/operations' , options )
333340 command . response_representation = Google ::Apis ::VpcaccessV1beta1 ::ListOperationsResponse ::Representation
334341 command . response_class = Google ::Apis ::VpcaccessV1beta1 ::ListOperationsResponse
335342 command . params [ 'name' ] = name unless name . nil?
336343 command . query [ 'filter' ] = filter unless filter . nil?
337344 command . query [ 'pageSize' ] = page_size unless page_size . nil?
338345 command . query [ 'pageToken' ] = page_token unless page_token . nil?
346+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
339347 command . query [ 'fields' ] = fields unless fields . nil?
340348 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
341349 execute_or_queue_command ( command , &block )
0 commit comments