Skip to content

Commit e75f9d1

Browse files
feat: Automated regeneration of integrations v1 client (#24416)
Auto-created at 2025-09-28 09:58:27 +0000 using the toys pull request generator.
1 parent 2a2eb10 commit e75f9d1

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274401,6 +274401,8 @@
274401274401
"/integrations:v1/integrations.projects.locations.integrations.versions.patch/updateMask": update_mask
274402274402
"/integrations:v1/integrations.projects.locations.integrations.versions.publish": publish_project_location_integration_version
274403274403
"/integrations:v1/integrations.projects.locations.integrations.versions.publish/name": name
274404+
"/integrations:v1/integrations.projects.locations.integrations.versions.test": test_project_location_integration_version
274405+
"/integrations:v1/integrations.projects.locations.integrations.versions.test/name": name
274404274406
"/integrations:v1/integrations.projects.locations.integrations.versions.testCases.create": create_project_location_integration_version_test_case
274405274407
"/integrations:v1/integrations.projects.locations.integrations.versions.testCases.create/parent": parent
274406274408
"/integrations:v1/integrations.projects.locations.integrations.versions.testCases.create/testCaseId": test_case_id

generated/google-apis-integrations_v1/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-integrations_v1
22

3+
### v0.17.0 (2025-09-28)
4+
5+
* Regenerated from discovery document revision 20250922
6+
37
### v0.16.0 (2025-07-27)
48

59
* Regenerated from discovery document revision 20250720

generated/google-apis-integrations_v1/lib/google/apis/integrations_v1/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 IntegrationsV1
1818
# Version of the google-apis-integrations_v1 gem
19-
GEM_VERSION = "0.16.0"
19+
GEM_VERSION = "0.17.0"
2020

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

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

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,6 +2155,39 @@ def publish_project_location_integration_version(name, google_cloud_integrations
21552155
execute_or_queue_command(command, &block)
21562156
end
21572157

2158+
# Execute the integration in draft state
2159+
# @param [String] name
2160+
# Output only. Auto-generated primary key.
2161+
# @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsRequest] google_cloud_integrations_v1alpha_test_integrations_request_object
2162+
# @param [String] fields
2163+
# Selector specifying which fields to include in a partial response.
2164+
# @param [String] quota_user
2165+
# Available to use for quota purposes for server-side applications. Can be any
2166+
# arbitrary string assigned to a user, but should not exceed 40 characters.
2167+
# @param [Google::Apis::RequestOptions] options
2168+
# Request-specific options
2169+
#
2170+
# @yield [result, err] Result & error if block supplied
2171+
# @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsResponse] parsed result object
2172+
# @yieldparam err [StandardError] error object if request failed
2173+
#
2174+
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsResponse]
2175+
#
2176+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2177+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2178+
# @raise [Google::Apis::AuthorizationError] Authorization is required
2179+
def test_project_location_integration_version(name, google_cloud_integrations_v1alpha_test_integrations_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2180+
command = make_simple_command(:post, 'v1/{+name}:test', options)
2181+
command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsRequest::Representation
2182+
command.request_object = google_cloud_integrations_v1alpha_test_integrations_request_object
2183+
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsResponse::Representation
2184+
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTestIntegrationsResponse
2185+
command.params['name'] = name unless name.nil?
2186+
command.query['fields'] = fields unless fields.nil?
2187+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2188+
execute_or_queue_command(command, &block)
2189+
end
2190+
21582191
# Sets the status of the ACTIVE integration to SNAPSHOT with a new tag "
21592192
# PREVIOUSLY_PUBLISHED" after validating it. The "HEAD" and "PUBLISH_REQUESTED"
21602193
# tags do not change. This RPC throws an exception if the version being snapshot

0 commit comments

Comments
 (0)