google-apis-run_v1 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb89456d9abb7c00c45e52f5ba97442b270cedeb25712c4a600f3e03956ba471
|
4
|
+
data.tar.gz: dc7668057796e0624003d78d3f92e57547115760e3ad181e40016433cd74e5e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd3ae6507a7b63ca2c032f9b26db9ad723553bbc990264a16f567814aee2ed473bb0e4ff12caf8062ae13897d45e6d100015f571fa6a732ea263fba87f10d13b
|
7
|
+
data.tar.gz: 1779bf3edc3c5a8db371696561a317520152bd07938a9027ac748770ba9bc1bb64f9ba8dc51b63fe5eb7abd6dbc64941eb83a65d78bf441bdd94890f096777e1
|
data/CHANGELOG.md
CHANGED
@@ -566,6 +566,13 @@ module Google
|
|
566
566
|
# @return [Google::Apis::RunV1::SecurityContext]
|
567
567
|
attr_accessor :security_context
|
568
568
|
|
569
|
+
# Cloud Run fully managed: not supported Cloud Run for Anthos: supported Probe
|
570
|
+
# describes a health check to be performed against a container to determine
|
571
|
+
# whether it is alive or ready to receive traffic.
|
572
|
+
# Corresponds to the JSON property `startupProbe`
|
573
|
+
# @return [Google::Apis::RunV1::Probe]
|
574
|
+
attr_accessor :startup_probe
|
575
|
+
|
569
576
|
# (Optional) Cloud Run fully managed: not supported Cloud Run for Anthos:
|
570
577
|
# supported Path at which the file to which the container's termination message
|
571
578
|
# will be written is mounted into the container's filesystem. Message written is
|
@@ -621,6 +628,7 @@ module Google
|
|
621
628
|
@readiness_probe = args[:readiness_probe] if args.key?(:readiness_probe)
|
622
629
|
@resources = args[:resources] if args.key?(:resources)
|
623
630
|
@security_context = args[:security_context] if args.key?(:security_context)
|
631
|
+
@startup_probe = args[:startup_probe] if args.key?(:startup_probe)
|
624
632
|
@termination_message_path = args[:termination_message_path] if args.key?(:termination_message_path)
|
625
633
|
@termination_message_policy = args[:termination_message_policy] if args.key?(:termination_message_policy)
|
626
634
|
@volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RunV1
|
18
18
|
# Version of the google-apis-run_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210409"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -541,6 +541,8 @@ module Google
|
|
541
541
|
|
542
542
|
property :security_context, as: 'securityContext', class: Google::Apis::RunV1::SecurityContext, decorator: Google::Apis::RunV1::SecurityContext::Representation
|
543
543
|
|
544
|
+
property :startup_probe, as: 'startupProbe', class: Google::Apis::RunV1::Probe, decorator: Google::Apis::RunV1::Probe::Representation
|
545
|
+
|
544
546
|
property :termination_message_path, as: 'terminationMessagePath'
|
545
547
|
property :termination_message_policy, as: 'terminationMessagePolicy'
|
546
548
|
collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::RunV1::VolumeMount, decorator: Google::Apis::RunV1::VolumeMount::Representation
|
@@ -826,7 +826,7 @@ module Google
|
|
826
826
|
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
827
827
|
# AIP-160](https://google.aip.dev/160).
|
828
828
|
# @param [Fixnum] page_size
|
829
|
-
# The maximum number of results to return. If not set, the service
|
829
|
+
# The maximum number of results to return. If not set, the service selects a
|
830
830
|
# default.
|
831
831
|
# @param [String] page_token
|
832
832
|
# A page token received from the `next_page_token` field in the response. Send
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-run_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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: 2021-
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-run_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.7.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-run_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Run Admin API V1
|