Skip to content

Commit 7cba75a

Browse files
feat: Automated regeneration of connectors v2 client (googleapis#22358)
Auto-created at 2025-04-06 09:39:03 +0000 using the toys pull request generator.
1 parent 8ec1505 commit 7cba75a

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120446,6 +120446,7 @@
120446120446
"/connectors:v2/connectors.projects.locations.connections.actions.execute/name": name
120447120447
"/connectors:v2/connectors.projects.locations.connections.actions.get": get_project_location_connection_action
120448120448
"/connectors:v2/connectors.projects.locations.connections.actions.get/name": name
120449+
"/connectors:v2/connectors.projects.locations.connections.actions.get/view": view
120449120450
"/connectors:v2/connectors.projects.locations.connections.actions.list": list_project_location_connection_actions
120450120451
"/connectors:v2/connectors.projects.locations.connections.actions.list/pageSize": page_size
120451120452
"/connectors:v2/connectors.projects.locations.connections.actions.list/pageToken": page_token

generated/google-apis-connectors_v2/CHANGELOG.md

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

3+
### v0.22.0 (2025-04-06)
4+
5+
* Regenerated from discovery document revision 20250327
6+
37
### v0.21.0 (2025-03-16)
48

59
* Regenerated from discovery document revision 20250304

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

Lines changed: 2 additions & 2 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.21.0"
19+
GEM_VERSION = "0.22.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250304"
25+
REVISION = "20250327"
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
@@ -257,6 +257,8 @@ def execute_action(name, execute_action_request_object = nil, fields: nil, quota
257257
# @param [String] name
258258
# Required. Resource name of the Action. Format: projects/`project`/locations/`
259259
# location`/connections/`connection`/actions/`action`
260+
# @param [String] view
261+
# Specified view of the action schema.
260262
# @param [String] fields
261263
# Selector specifying which fields to include in a partial response.
262264
# @param [String] quota_user
@@ -274,11 +276,12 @@ def execute_action(name, execute_action_request_object = nil, fields: nil, quota
274276
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
275277
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
276278
# @raise [Google::Apis::AuthorizationError] Authorization is required
277-
def get_project_location_connection_action(name, fields: nil, quota_user: nil, options: nil, &block)
279+
def get_project_location_connection_action(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
278280
command = make_simple_command(:get, 'v2/{+name}', options)
279281
command.response_representation = Google::Apis::ConnectorsV2::Action::Representation
280282
command.response_class = Google::Apis::ConnectorsV2::Action
281283
command.params['name'] = name unless name.nil?
284+
command.query['view'] = view unless view.nil?
282285
command.query['fields'] = fields unless fields.nil?
283286
command.query['quotaUser'] = quota_user unless quota_user.nil?
284287
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)