File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed
generated/google-apis-integrations_v1
lib/google/apis/integrations_v1 Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -258076,6 +258076,7 @@
258076258076"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest": google_cloud_integrations_v1alpha_create_cloud_function_request
258077258077"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest/functionName": function_name
258078258078"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest/functionRegion": function_region
258079+ "/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest/gcfApiVersion": gcf_api_version
258079258080"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest/projectId": project_id
258080258081"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionResponse": google_cloud_integrations_v1alpha_create_cloud_function_response
258081258082"/integrations:v1/GoogleCloudIntegrationsV1alphaCreateCloudFunctionResponse/triggerUrl": trigger_url
Original file line number Diff line number Diff line change 11# Release history for google-apis-integrations_v1
22
3+ ### v0.10.0 (2025-04-27)
4+
5+ * Regenerated from discovery document revision 20250423
6+
37### v0.9.0 (2025-04-20)
48
59* Regenerated from discovery document revision 20250413
Original file line number Diff line number Diff line change @@ -7315,6 +7315,11 @@ class GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest
73157315 # @return [String]
73167316 attr_accessor :function_region
73177317
7318+ # Optional. The api version of CF to be created
7319+ # Corresponds to the JSON property `gcfApiVersion`
7320+ # @return [String]
7321+ attr_accessor :gcf_api_version
7322+
73187323 # Indicates the id of the GCP project that the function will be created in.
73197324 # Corresponds to the JSON property `projectId`
73207325 # @return [String]
@@ -7328,6 +7333,7 @@ def initialize(**args)
73287333 def update! ( **args )
73297334 @function_name = args [ :function_name ] if args . key? ( :function_name )
73307335 @function_region = args [ :function_region ] if args . key? ( :function_region )
7336+ @gcf_api_version = args [ :gcf_api_version ] if args . key? ( :gcf_api_version )
73317337 @project_id = args [ :project_id ] if args . key? ( :project_id )
73327338 end
73337339 end
Original file line number Diff line number Diff 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.9 .0"
19+ GEM_VERSION = "0.10 .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 = "20250413 "
25+ REVISION = "20250423 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -3849,6 +3849,7 @@ class GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest
38493849 class Representation < Google ::Apis ::Core ::JsonRepresentation
38503850 property :function_name , as : 'functionName'
38513851 property :function_region , as : 'functionRegion'
3852+ property :gcf_api_version , as : 'gcfApiVersion'
38523853 property :project_id , as : 'projectId'
38533854 end
38543855 end
You can’t perform that action at this time.
0 commit comments