Skip to content

Commit 407b2b3

Browse files
feat: Automated regeneration of developerconnect v1 client
1 parent d872bb6 commit 407b2b3

File tree

5 files changed

+111
-2
lines changed

5 files changed

+111
-2
lines changed

api_names_out.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163799,6 +163799,10 @@
163799163799
"/developerconnect:v1/AccountConnector/oauthStartUri": oauth_start_uri
163800163800
"/developerconnect:v1/AccountConnector/providerOauthConfig": provider_oauth_config
163801163801
"/developerconnect:v1/AccountConnector/updateTime": update_time
163802+
"/developerconnect:v1/AppHubService": app_hub_service
163803+
"/developerconnect:v1/AppHubService/apphubService": apphub_service
163804+
"/developerconnect:v1/AppHubService/criticality": criticality
163805+
"/developerconnect:v1/AppHubService/environment": environment
163802163806
"/developerconnect:v1/AppHubWorkload": app_hub_workload
163803163807
"/developerconnect:v1/AppHubWorkload/criticality": criticality
163804163808
"/developerconnect:v1/AppHubWorkload/environment": environment
@@ -163930,6 +163934,8 @@
163930163934
"/developerconnect:v1/GoogleArtifactRegistry": google_artifact_registry
163931163935
"/developerconnect:v1/GoogleArtifactRegistry/artifactRegistryPackage": artifact_registry_package
163932163936
"/developerconnect:v1/GoogleArtifactRegistry/projectId": project_id
163937+
"/developerconnect:v1/GoogleCloudRun": google_cloud_run
163938+
"/developerconnect:v1/GoogleCloudRun/serviceUri": service_uri
163933163939
"/developerconnect:v1/HttpBody": http_body
163934163940
"/developerconnect:v1/HttpBody/contentType": content_type
163935163941
"/developerconnect:v1/HttpBody/data": data
@@ -164045,8 +164051,10 @@
164045164051
"/developerconnect:v1/ProviderOAuthConfig/scopes/scope": scope
164046164052
"/developerconnect:v1/ProviderOAuthConfig/systemProviderId": system_provider_id
164047164053
"/developerconnect:v1/RuntimeConfig": runtime_config
164054+
"/developerconnect:v1/RuntimeConfig/appHubService": app_hub_service
164048164055
"/developerconnect:v1/RuntimeConfig/appHubWorkload": app_hub_workload
164049164056
"/developerconnect:v1/RuntimeConfig/gkeWorkload": gke_workload
164057+
"/developerconnect:v1/RuntimeConfig/googleCloudRun": google_cloud_run
164050164058
"/developerconnect:v1/RuntimeConfig/state": state
164051164059
"/developerconnect:v1/RuntimeConfig/uri": uri
164052164060
"/developerconnect:v1/ServiceDirectoryConfig": service_directory_config

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

3+
### v0.15.0 (2025-10-26)
4+
5+
* Regenerated from discovery document revision 20251016
6+
37
### v0.14.0 (2025-10-12)
48

59
* Regenerated from discovery document revision 20251003

generated/google-apis-developerconnect_v1/lib/google/apis/developerconnect_v1/classes.rb

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,39 @@ def update!(**args)
8989
end
9090
end
9191

92+
# AppHubService represents the App Hub Service.
93+
class AppHubService
94+
include Google::Apis::Core::Hashable
95+
96+
# Required. Output only. Immutable. The name of the App Hub Service. Format: `
97+
# projects/`project`/locations/`location`/applications/`application`/services/`
98+
# service``.
99+
# Corresponds to the JSON property `apphubService`
100+
# @return [String]
101+
attr_accessor :apphub_service
102+
103+
# Output only. The criticality of the App Hub Service.
104+
# Corresponds to the JSON property `criticality`
105+
# @return [String]
106+
attr_accessor :criticality
107+
108+
# Output only. The environment of the App Hub Service.
109+
# Corresponds to the JSON property `environment`
110+
# @return [String]
111+
attr_accessor :environment
112+
113+
def initialize(**args)
114+
update!(**args)
115+
end
116+
117+
# Update properties of this object
118+
def update!(**args)
119+
@apphub_service = args[:apphub_service] if args.key?(:apphub_service)
120+
@criticality = args[:criticality] if args.key?(:criticality)
121+
@environment = args[:environment] if args.key?(:environment)
122+
end
123+
end
124+
92125
# AppHubWorkload represents the App Hub Workload.
93126
class AppHubWorkload
94127
include Google::Apis::Core::Hashable
@@ -1079,6 +1112,26 @@ def update!(**args)
10791112
end
10801113
end
10811114

1115+
# GoogleCloudRun represents the Cloud Run runtime.
1116+
class GoogleCloudRun
1117+
include Google::Apis::Core::Hashable
1118+
1119+
# Required. Immutable. The name of the Cloud Run service. Format: `projects/`
1120+
# project`/locations/`location`/services/`service``.
1121+
# Corresponds to the JSON property `serviceUri`
1122+
# @return [String]
1123+
attr_accessor :service_uri
1124+
1125+
def initialize(**args)
1126+
update!(**args)
1127+
end
1128+
1129+
# Update properties of this object
1130+
def update!(**args)
1131+
@service_uri = args[:service_uri] if args.key?(:service_uri)
1132+
end
1133+
end
1134+
10821135
# Message that represents an arbitrary HTTP body. It should only be used for
10831136
# payload formats that can't be represented as JSON, such as raw binary or an
10841137
# HTML page. This message can be used both in streaming and non-streaming API
@@ -1915,6 +1968,11 @@ def update!(**args)
19151968
class RuntimeConfig
19161969
include Google::Apis::Core::Hashable
19171970

1971+
# AppHubService represents the App Hub Service.
1972+
# Corresponds to the JSON property `appHubService`
1973+
# @return [Google::Apis::DeveloperconnectV1::AppHubService]
1974+
attr_accessor :app_hub_service
1975+
19181976
# AppHubWorkload represents the App Hub Workload.
19191977
# Corresponds to the JSON property `appHubWorkload`
19201978
# @return [Google::Apis::DeveloperconnectV1::AppHubWorkload]
@@ -1925,6 +1983,11 @@ class RuntimeConfig
19251983
# @return [Google::Apis::DeveloperconnectV1::GkeWorkload]
19261984
attr_accessor :gke_workload
19271985

1986+
# GoogleCloudRun represents the Cloud Run runtime.
1987+
# Corresponds to the JSON property `googleCloudRun`
1988+
# @return [Google::Apis::DeveloperconnectV1::GoogleCloudRun]
1989+
attr_accessor :google_cloud_run
1990+
19281991
# Output only. The state of the Runtime.
19291992
# Corresponds to the JSON property `state`
19301993
# @return [String]
@@ -1942,8 +2005,10 @@ def initialize(**args)
19422005

19432006
# Update properties of this object
19442007
def update!(**args)
2008+
@app_hub_service = args[:app_hub_service] if args.key?(:app_hub_service)
19452009
@app_hub_workload = args[:app_hub_workload] if args.key?(:app_hub_workload)
19462010
@gke_workload = args[:gke_workload] if args.key?(:gke_workload)
2011+
@google_cloud_run = args[:google_cloud_run] if args.key?(:google_cloud_run)
19472012
@state = args[:state] if args.key?(:state)
19482013
@uri = args[:uri] if args.key?(:uri)
19492014
end

generated/google-apis-developerconnect_v1/lib/google/apis/developerconnect_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 DeveloperconnectV1
1818
# Version of the google-apis-developerconnect_v1 gem
19-
GEM_VERSION = "0.14.0"
19+
GEM_VERSION = "0.15.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 = "20251003"
25+
REVISION = "20251016"
2626
end
2727
end
2828
end

generated/google-apis-developerconnect_v1/lib/google/apis/developerconnect_v1/representations.rb

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
2828
include Google::Apis::Core::JsonObjectSupport
2929
end
3030

31+
class AppHubService
32+
class Representation < Google::Apis::Core::JsonRepresentation; end
33+
34+
include Google::Apis::Core::JsonObjectSupport
35+
end
36+
3137
class AppHubWorkload
3238
class Representation < Google::Apis::Core::JsonRepresentation; end
3339

@@ -190,6 +196,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
190196
include Google::Apis::Core::JsonObjectSupport
191197
end
192198

199+
class GoogleCloudRun
200+
class Representation < Google::Apis::Core::JsonRepresentation; end
201+
202+
include Google::Apis::Core::JsonObjectSupport
203+
end
204+
193205
class HttpBody
194206
class Representation < Google::Apis::Core::JsonRepresentation; end
195207

@@ -367,6 +379,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
367379
end
368380
end
369381

382+
class AppHubService
383+
# @private
384+
class Representation < Google::Apis::Core::JsonRepresentation
385+
property :apphub_service, as: 'apphubService'
386+
property :criticality, as: 'criticality'
387+
property :environment, as: 'environment'
388+
end
389+
end
390+
370391
class AppHubWorkload
371392
# @private
372393
class Representation < Google::Apis::Core::JsonRepresentation
@@ -651,6 +672,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
651672
end
652673
end
653674

675+
class GoogleCloudRun
676+
# @private
677+
class Representation < Google::Apis::Core::JsonRepresentation
678+
property :service_uri, as: 'serviceUri'
679+
end
680+
end
681+
654682
class HttpBody
655683
# @private
656684
class Representation < Google::Apis::Core::JsonRepresentation
@@ -869,10 +897,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
869897
class RuntimeConfig
870898
# @private
871899
class Representation < Google::Apis::Core::JsonRepresentation
900+
property :app_hub_service, as: 'appHubService', class: Google::Apis::DeveloperconnectV1::AppHubService, decorator: Google::Apis::DeveloperconnectV1::AppHubService::Representation
901+
872902
property :app_hub_workload, as: 'appHubWorkload', class: Google::Apis::DeveloperconnectV1::AppHubWorkload, decorator: Google::Apis::DeveloperconnectV1::AppHubWorkload::Representation
873903

874904
property :gke_workload, as: 'gkeWorkload', class: Google::Apis::DeveloperconnectV1::GkeWorkload, decorator: Google::Apis::DeveloperconnectV1::GkeWorkload::Representation
875905

906+
property :google_cloud_run, as: 'googleCloudRun', class: Google::Apis::DeveloperconnectV1::GoogleCloudRun, decorator: Google::Apis::DeveloperconnectV1::GoogleCloudRun::Representation
907+
876908
property :state, as: 'state'
877909
property :uri, as: 'uri'
878910
end

0 commit comments

Comments
 (0)