Skip to content

Commit 0c1995a

Browse files
feat: Automated regeneration of connectors v2 client (googleapis#23235)
Auto-created at 2025-05-25 09:32:52 +0000 using the toys pull request generator.
1 parent 183cbea commit 0c1995a

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123738,6 +123738,7 @@
123738123738
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.list/pageToken": page_token
123739123739
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.list/parent": parent
123740123740
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.list/sortBy": sort_by
123741+
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.list/sortOrder": sort_order
123741123742
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.patch": patch_project_location_connection_entity_type_entity
123742123743
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.patch/name": name
123743123744
"/connectors:v2/connectors.projects.locations.connections.entityTypes.entities.updateEntitiesWithConditions": update_project_location_connection_entity_type_entity_entities_with_conditions

generated/google-apis-connectors_v2/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-connectors_v2
22

3+
### v0.25.0 (2025-05-25)
4+
5+
* Regenerated from discovery document revision 20250521
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.24.0 (2025-05-18)
49

510
* Regenerated from discovery document revision 20250507

generated/google-apis-connectors_v2/lib/google/apis/connectors_v2/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ConnectorsV2
1818
# Version of the google-apis-connectors_v2 gem
19-
GEM_VERSION = "0.24.0"
19+
GEM_VERSION = "0.25.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250507"
25+
REVISION = "20250521"
2626
end
2727
end
2828
end

generated/google-apis-connectors_v2/lib/google/apis/connectors_v2/service.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,8 @@ def get_project_location_connection_entity_type_entity(name, fields: nil, quota_
570570
# Page token value if available from a previous request.
571571
# @param [Array<String>, String] sort_by
572572
# List of 'sort_by' columns to use when returning the results.
573+
# @param [Array<String>, String] sort_order
574+
# List of 'sort_order' columns to use when returning the results.
573575
# @param [String] fields
574576
# Selector specifying which fields to include in a partial response.
575577
# @param [String] quota_user
@@ -587,7 +589,7 @@ def get_project_location_connection_entity_type_entity(name, fields: nil, quota_
587589
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
588590
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
589591
# @raise [Google::Apis::AuthorizationError] Authorization is required
590-
def list_project_location_connection_entity_type_entities(parent, conditions: nil, page_size: nil, page_token: nil, sort_by: nil, fields: nil, quota_user: nil, options: nil, &block)
592+
def list_project_location_connection_entity_type_entities(parent, conditions: nil, page_size: nil, page_token: nil, sort_by: nil, sort_order: nil, fields: nil, quota_user: nil, options: nil, &block)
591593
command = make_simple_command(:get, 'v2/{+parent}/entities', options)
592594
command.response_representation = Google::Apis::ConnectorsV2::ListEntitiesResponse::Representation
593595
command.response_class = Google::Apis::ConnectorsV2::ListEntitiesResponse
@@ -596,6 +598,7 @@ def list_project_location_connection_entity_type_entities(parent, conditions: ni
596598
command.query['pageSize'] = page_size unless page_size.nil?
597599
command.query['pageToken'] = page_token unless page_token.nil?
598600
command.query['sortBy'] = sort_by unless sort_by.nil?
601+
command.query['sortOrder'] = sort_order unless sort_order.nil?
599602
command.query['fields'] = fields unless fields.nil?
600603
command.query['quotaUser'] = quota_user unless quota_user.nil?
601604
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)