@@ -89,8 +89,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
8989 # @param [String] name
9090 # The resource that owns the locations collection, if applicable.
9191 # @param [Array<String>, String] extra_location_types
92- # Optional. A list of extra location types that should be used as conditions for
93- # controlling the visibility of the locations .
92+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
93+ # field which is primarily intended for internal usage .
9494 # @param [String] filter
9595 # A filter to narrow down results to a preferred subset. The filtering language
9696 # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -469,6 +469,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
469469 # The standard list page size.
470470 # @param [String] page_token
471471 # The standard list page token.
472+ # @param [Boolean] return_partial_success
473+ # When set to `true`, operations that are reachable are returned as normal, and
474+ # those that are unreachable are returned in the [ListOperationsResponse.
475+ # unreachable] field. This can only be `true` when reading across collections e.
476+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
477+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
478+ # explicitly documented otherwise in service or product specific documentation.
472479 # @param [String] fields
473480 # Selector specifying which fields to include in a partial response.
474481 # @param [String] quota_user
@@ -486,14 +493,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
486493 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
487494 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
488495 # @raise [Google::Apis::AuthorizationError] Authorization is required
489- def list_project_location_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
496+ 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 )
490497 command = make_simple_command ( :get , 'v1/{+name}/operations' , options )
491498 command . response_representation = Google ::Apis ::IdsV1 ::ListOperationsResponse ::Representation
492499 command . response_class = Google ::Apis ::IdsV1 ::ListOperationsResponse
493500 command . params [ 'name' ] = name unless name . nil?
494501 command . query [ 'filter' ] = filter unless filter . nil?
495502 command . query [ 'pageSize' ] = page_size unless page_size . nil?
496503 command . query [ 'pageToken' ] = page_token unless page_token . nil?
504+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
497505 command . query [ 'fields' ] = fields unless fields . nil?
498506 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
499507 execute_or_queue_command ( command , &block )
0 commit comments