google-apis-developerconnect_v1 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/developerconnect_v1/classes.rb +67 -2
- data/lib/google/apis/developerconnect_v1/gem_version.rb +2 -2
- data/lib/google/apis/developerconnect_v1/representations.rb +32 -0
- data/lib/google/apis/developerconnect_v1/service.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbe3bc35980aced1d440ad7de340ceef1be4ff1eb99285ac6dd4e61df149ce61
|
|
4
|
+
data.tar.gz: a5a5c4b7bf8f5ccd8c930ee634d153cd3761006931474cfc11e7e3c8bf18341d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b12c9c45d328d56b8f606663fb22e54669059910374fb8489ff3f83d80227d1c1068095ec5c6f32eb6ce51fa6b7ceea87634783e309adc29c0dea9910d7c98c
|
|
7
|
+
data.tar.gz: 7d8553c337f1d8d143f858ca0a671e44a26da40d2d5a17b66affaea667219c270abaa2d60d0d27168a95a50a86fb85dc00e5584a67589e25e26987b40fb00cfb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-developerconnect_v1
|
|
2
2
|
|
|
3
|
+
### v0.16.0 (2025-11-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251030
|
|
6
|
+
|
|
7
|
+
### v0.15.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251016
|
|
10
|
+
|
|
3
11
|
### v0.14.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251003
|
|
@@ -89,6 +89,39 @@ module Google
|
|
|
89
89
|
end
|
|
90
90
|
end
|
|
91
91
|
|
|
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
|
+
|
|
92
125
|
# AppHubWorkload represents the App Hub Workload.
|
|
93
126
|
class AppHubWorkload
|
|
94
127
|
include Google::Apis::Core::Hashable
|
|
@@ -1079,6 +1112,26 @@ module Google
|
|
|
1079
1112
|
end
|
|
1080
1113
|
end
|
|
1081
1114
|
|
|
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
|
+
|
|
1082
1135
|
# Message that represents an arbitrary HTTP body. It should only be used for
|
|
1083
1136
|
# payload formats that can't be represented as JSON, such as raw binary or an
|
|
1084
1137
|
# HTML page. This message can be used both in streaming and non-streaming API
|
|
@@ -1151,7 +1204,7 @@ module Google
|
|
|
1151
1204
|
# @return [Array<Google::Apis::DeveloperconnectV1::ArtifactConfig>]
|
|
1152
1205
|
attr_accessor :artifact_configs
|
|
1153
1206
|
|
|
1154
|
-
# Output only.
|
|
1207
|
+
# Output only. Create timestamp.
|
|
1155
1208
|
# Corresponds to the JSON property `createTime`
|
|
1156
1209
|
# @return [String]
|
|
1157
1210
|
attr_accessor :create_time
|
|
@@ -1195,7 +1248,7 @@ module Google
|
|
|
1195
1248
|
# @return [String]
|
|
1196
1249
|
attr_accessor :state
|
|
1197
1250
|
|
|
1198
|
-
# Output only.
|
|
1251
|
+
# Output only. Update timestamp.
|
|
1199
1252
|
# Corresponds to the JSON property `updateTime`
|
|
1200
1253
|
# @return [String]
|
|
1201
1254
|
attr_accessor :update_time
|
|
@@ -1915,6 +1968,11 @@ module Google
|
|
|
1915
1968
|
class RuntimeConfig
|
|
1916
1969
|
include Google::Apis::Core::Hashable
|
|
1917
1970
|
|
|
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
|
+
|
|
1918
1976
|
# AppHubWorkload represents the App Hub Workload.
|
|
1919
1977
|
# Corresponds to the JSON property `appHubWorkload`
|
|
1920
1978
|
# @return [Google::Apis::DeveloperconnectV1::AppHubWorkload]
|
|
@@ -1925,6 +1983,11 @@ module Google
|
|
|
1925
1983
|
# @return [Google::Apis::DeveloperconnectV1::GkeWorkload]
|
|
1926
1984
|
attr_accessor :gke_workload
|
|
1927
1985
|
|
|
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
|
+
|
|
1928
1991
|
# Output only. The state of the Runtime.
|
|
1929
1992
|
# Corresponds to the JSON property `state`
|
|
1930
1993
|
# @return [String]
|
|
@@ -1942,8 +2005,10 @@ module Google
|
|
|
1942
2005
|
|
|
1943
2006
|
# Update properties of this object
|
|
1944
2007
|
def update!(**args)
|
|
2008
|
+
@app_hub_service = args[:app_hub_service] if args.key?(:app_hub_service)
|
|
1945
2009
|
@app_hub_workload = args[:app_hub_workload] if args.key?(:app_hub_workload)
|
|
1946
2010
|
@gke_workload = args[:gke_workload] if args.key?(:gke_workload)
|
|
2011
|
+
@google_cloud_run = args[:google_cloud_run] if args.key?(:google_cloud_run)
|
|
1947
2012
|
@state = args[:state] if args.key?(:state)
|
|
1948
2013
|
@uri = args[:uri] if args.key?(:uri)
|
|
1949
2014
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DeveloperconnectV1
|
|
18
18
|
# Version of the google-apis-developerconnect_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251030"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -28,6 +28,12 @@ module Google
|
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
+
class AppHubService
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
31
37
|
class AppHubWorkload
|
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
39
|
|
|
@@ -190,6 +196,12 @@ module Google
|
|
|
190
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
191
197
|
end
|
|
192
198
|
|
|
199
|
+
class GoogleCloudRun
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
193
205
|
class HttpBody
|
|
194
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
195
207
|
|
|
@@ -367,6 +379,15 @@ module Google
|
|
|
367
379
|
end
|
|
368
380
|
end
|
|
369
381
|
|
|
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
|
+
|
|
370
391
|
class AppHubWorkload
|
|
371
392
|
# @private
|
|
372
393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -651,6 +672,13 @@ module Google
|
|
|
651
672
|
end
|
|
652
673
|
end
|
|
653
674
|
|
|
675
|
+
class GoogleCloudRun
|
|
676
|
+
# @private
|
|
677
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
678
|
+
property :service_uri, as: 'serviceUri'
|
|
679
|
+
end
|
|
680
|
+
end
|
|
681
|
+
|
|
654
682
|
class HttpBody
|
|
655
683
|
# @private
|
|
656
684
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -869,10 +897,14 @@ module Google
|
|
|
869
897
|
class RuntimeConfig
|
|
870
898
|
# @private
|
|
871
899
|
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
|
+
|
|
872
902
|
property :app_hub_workload, as: 'appHubWorkload', class: Google::Apis::DeveloperconnectV1::AppHubWorkload, decorator: Google::Apis::DeveloperconnectV1::AppHubWorkload::Representation
|
|
873
903
|
|
|
874
904
|
property :gke_workload, as: 'gkeWorkload', class: Google::Apis::DeveloperconnectV1::GkeWorkload, decorator: Google::Apis::DeveloperconnectV1::GkeWorkload::Representation
|
|
875
905
|
|
|
906
|
+
property :google_cloud_run, as: 'googleCloudRun', class: Google::Apis::DeveloperconnectV1::GoogleCloudRun, decorator: Google::Apis::DeveloperconnectV1::GoogleCloudRun::Representation
|
|
907
|
+
|
|
876
908
|
property :state, as: 'state'
|
|
877
909
|
property :uri, as: 'uri'
|
|
878
910
|
end
|
|
@@ -85,8 +85,8 @@ module Google
|
|
|
85
85
|
# @param [String] name
|
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
|
88
|
-
# Optional.
|
|
89
|
-
#
|
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
90
90
|
# @param [String] filter
|
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -1366,7 +1366,7 @@ module Google
|
|
|
1366
1366
|
execute_or_queue_command(command, &block)
|
|
1367
1367
|
end
|
|
1368
1368
|
|
|
1369
|
-
#
|
|
1369
|
+
# Deletes a single Insight.
|
|
1370
1370
|
# @param [String] name
|
|
1371
1371
|
# Required. Value for parent.
|
|
1372
1372
|
# @param [String] etag
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-developerconnect_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.16.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|