google-apis-run_v2 0.1.0 → 0.2.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 +5 -0
- data/lib/google/apis/run_v2/classes.rb +0 -32
- data/lib/google/apis/run_v2/gem_version.rb +3 -3
- data/lib/google/apis/run_v2/representations.rb +0 -16
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 185e84b11d422530fae9150fef7cb83d484bc9c0c1bc076379280c87bdaa046c
|
|
4
|
+
data.tar.gz: 8d6ed45e8b555bba90be3138361f97796fb88388d417833fae2090b75f7f10ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0066cb9bd23d90962bbb4629ad00274625ff75408b8682103b0cc107fe048cd136db8c5219a1367a75d953b14d22891b52efd6cc74af00dbf7905583abee66eb
|
|
7
|
+
data.tar.gz: 4e25f3d2d586daa31daf1f5ee041439110021984e95bc780937ba0fc01d59ca7db3024f4b793cfb31a661ec0355c83fb6702be441bc54175b4dd48b8567c18d8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-run_v2
|
|
2
2
|
|
|
3
|
+
### v0.2.0 (2022-01-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220107
|
|
6
|
+
* Regenerated using generator version 0.4.1
|
|
7
|
+
|
|
3
8
|
### v0.1.0 (2022-01-06)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20220103
|
|
@@ -259,32 +259,6 @@ module Google
|
|
|
259
259
|
end
|
|
260
260
|
end
|
|
261
261
|
|
|
262
|
-
# ContainerStatus holds the information of container name and image digest value.
|
|
263
|
-
class GoogleCloudRunOpV2ContainerStatus
|
|
264
|
-
include Google::Apis::Core::Hashable
|
|
265
|
-
|
|
266
|
-
# ImageDigest holds the resolved digest for the image specified, regardless of
|
|
267
|
-
# whether a tag or digest was originally specified in the Container object.
|
|
268
|
-
# Corresponds to the JSON property `imageDigest`
|
|
269
|
-
# @return [String]
|
|
270
|
-
attr_accessor :image_digest
|
|
271
|
-
|
|
272
|
-
# The name of the container, if specified.
|
|
273
|
-
# Corresponds to the JSON property `name`
|
|
274
|
-
# @return [String]
|
|
275
|
-
attr_accessor :name
|
|
276
|
-
|
|
277
|
-
def initialize(**args)
|
|
278
|
-
update!(**args)
|
|
279
|
-
end
|
|
280
|
-
|
|
281
|
-
# Update properties of this object
|
|
282
|
-
def update!(**args)
|
|
283
|
-
@image_digest = args[:image_digest] if args.key?(:image_digest)
|
|
284
|
-
@name = args[:name] if args.key?(:name)
|
|
285
|
-
end
|
|
286
|
-
end
|
|
287
|
-
|
|
288
262
|
# EnvVar represents an environment variable present in a Container.
|
|
289
263
|
class GoogleCloudRunOpV2EnvVar
|
|
290
264
|
include Google::Apis::Core::Hashable
|
|
@@ -452,11 +426,6 @@ module Google
|
|
|
452
426
|
# @return [Fixnum]
|
|
453
427
|
attr_accessor :container_concurrency
|
|
454
428
|
|
|
455
|
-
# Output only. Status information for each of the containers specified.
|
|
456
|
-
# Corresponds to the JSON property `containerStatuses`
|
|
457
|
-
# @return [Array<Google::Apis::RunV2::GoogleCloudRunOpV2ContainerStatus>]
|
|
458
|
-
attr_accessor :container_statuses
|
|
459
|
-
|
|
460
429
|
# Holds the single container that defines the unit of execution for this
|
|
461
430
|
# Revision.
|
|
462
431
|
# Corresponds to the JSON property `containers`
|
|
@@ -605,7 +574,6 @@ module Google
|
|
|
605
574
|
@conditions = args[:conditions] if args.key?(:conditions)
|
|
606
575
|
@confidential = args[:confidential] if args.key?(:confidential)
|
|
607
576
|
@container_concurrency = args[:container_concurrency] if args.key?(:container_concurrency)
|
|
608
|
-
@container_statuses = args[:container_statuses] if args.key?(:container_statuses)
|
|
609
577
|
@containers = args[:containers] if args.key?(:containers)
|
|
610
578
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
611
579
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RunV2
|
|
18
18
|
# Version of the google-apis-run_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.4.
|
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220107"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -52,12 +52,6 @@ module Google
|
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
-
class GoogleCloudRunOpV2ContainerStatus
|
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
57
|
-
|
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
59
|
-
end
|
|
60
|
-
|
|
61
55
|
class GoogleCloudRunOpV2EnvVar
|
|
62
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
57
|
|
|
@@ -289,14 +283,6 @@ module Google
|
|
|
289
283
|
end
|
|
290
284
|
end
|
|
291
285
|
|
|
292
|
-
class GoogleCloudRunOpV2ContainerStatus
|
|
293
|
-
# @private
|
|
294
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
295
|
-
property :image_digest, as: 'imageDigest'
|
|
296
|
-
property :name, as: 'name'
|
|
297
|
-
end
|
|
298
|
-
end
|
|
299
|
-
|
|
300
286
|
class GoogleCloudRunOpV2EnvVar
|
|
301
287
|
# @private
|
|
302
288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -349,8 +335,6 @@ module Google
|
|
|
349
335
|
|
|
350
336
|
property :confidential, as: 'confidential'
|
|
351
337
|
property :container_concurrency, as: 'containerConcurrency'
|
|
352
|
-
collection :container_statuses, as: 'containerStatuses', class: Google::Apis::RunV2::GoogleCloudRunOpV2ContainerStatus, decorator: Google::Apis::RunV2::GoogleCloudRunOpV2ContainerStatus::Representation
|
|
353
|
-
|
|
354
338
|
collection :containers, as: 'containers', class: Google::Apis::RunV2::GoogleCloudRunOpV2Container, decorator: Google::Apis::RunV2::GoogleCloudRunOpV2Container::Representation
|
|
355
339
|
|
|
356
340
|
property :create_time, as: 'createTime'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-run_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-01-
|
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.2.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.3.
|
|
78
|
+
rubygems_version: 3.3.5
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Cloud Run Admin API V2
|