@@ -85,8 +85,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
8585 # @param [String] name
8686 # The resource that owns the locations collection, if applicable.
8787 # @param [Array<String>, String] extra_location_types
88- # Optional. Do not use this field. It is unsupported and is ignored unless
89- # explicitly documented otherwise. This is primarily for internal usage.
88+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
89+ # field which is primarily intended for internal usage.
9090 # @param [String] filter
9191 # A filter to narrow down results to a preferred subset. The filtering language
9292 # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -2404,6 +2404,13 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
24042404 # The standard list page size.
24052405 # @param [String] page_token
24062406 # The standard list page token.
2407+ # @param [Boolean] return_partial_success
2408+ # When set to `true`, operations that are reachable are returned as normal, and
2409+ # those that are unreachable are returned in the [ListOperationsResponse.
2410+ # unreachable] field. This can only be `true` when reading across collections e.
2411+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2412+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2413+ # explicitly documented otherwise in service or product specific documentation.
24072414 # @param [String] fields
24082415 # Selector specifying which fields to include in a partial response.
24092416 # @param [String] quota_user
@@ -2421,14 +2428,15 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
24212428 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
24222429 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
24232430 # @raise [Google::Apis::AuthorizationError] Authorization is required
2424- def list_project_location_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
2431+ 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 )
24252432 command = make_simple_command ( :get , 'v1beta1/{+name}/operations' , options )
24262433 command . response_representation = Google ::Apis ::NetworkservicesV1beta1 ::ListOperationsResponse ::Representation
24272434 command . response_class = Google ::Apis ::NetworkservicesV1beta1 ::ListOperationsResponse
24282435 command . params [ 'name' ] = name unless name . nil?
24292436 command . query [ 'filter' ] = filter unless filter . nil?
24302437 command . query [ 'pageSize' ] = page_size unless page_size . nil?
24312438 command . query [ 'pageToken' ] = page_token unless page_token . nil?
2439+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
24322440 command . query [ 'fields' ] = fields unless fields . nil?
24332441 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
24342442 execute_or_queue_command ( command , &block )
0 commit comments