google-apis-developerconnect_v1 0.14.0 → 0.15.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9720e25131daecacb8154182cdd5e3fb2ade0f42e0f4ff2e2bf3fd6426f543d9
|
|
4
|
+
data.tar.gz: ae073db1bdaa7d5ff6ac1df44bcd0b5a2763761c0e03c49ca0b9ef773bc0df1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6766d04e4640da9e3cc20859b552bf7d7b1d55a8e1b67112825ae07e07de17401d342b209e59e15aaf94cb76341f71233b20861f9bf6403bd9ca4f214ba600c1
|
|
7
|
+
data.tar.gz: 10785bc77055a8fe46af5b7e0cc6f7c1888a80a9ec9aae9197eae076fb8d1f7c441a9defeb2dc62c3ea6fb5848fcd9e91f05c1b6fe6ef200007238c0616e401a
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -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.15.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 = "20251016"
|
|
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
|
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.15.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.15.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:
|