google-apis-run_v2 0.26.0 → 0.27.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 +4 -0
- data/lib/google/apis/run_v2/classes.rb +20 -3
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e70d58a44ce155fc4a828c6e4e4a8974df20cd7f6cf044dc997f0b8f28e50116
|
|
4
|
+
data.tar.gz: d3034359f3bb2eac1911677af33761bdfb0becc0a90fc3633e2cb5e5f32183b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb1f190bbb810f04c145dfe21b34ee8de4ab065a6b89847ddf0f2f531689c84b61ce171d91e0fc671518b0bcd5150c61f6f2822d6cc814ef4f7d9ad63c8a08ee
|
|
7
|
+
data.tar.gz: 821082c4aaf1c3509ab770de8b0b422c13df843b8ce8753734a53cbf5f5b779d1e3935e0ce16f028c43735077a0b71d6d37b221a573f547ea8dbf77bd1c75e63
|
data/CHANGELOG.md
CHANGED
|
@@ -52,7 +52,9 @@ module Google
|
|
|
52
52
|
end
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
-
# Represents a
|
|
55
|
+
# Represents a set of Cloud SQL instances. Each one will be available under /
|
|
56
|
+
# cloudsql/[instance]. Visit https://cloud.google.com/sql/docs/mysql/connect-run
|
|
57
|
+
# for more information on how to connect Cloud SQL and Cloud Run.
|
|
56
58
|
class GoogleCloudRunV2CloudSqlInstance
|
|
57
59
|
include Google::Apis::Core::Hashable
|
|
58
60
|
|
|
@@ -186,7 +188,7 @@ module Google
|
|
|
186
188
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2Probe]
|
|
187
189
|
attr_accessor :liveness_probe
|
|
188
190
|
|
|
189
|
-
# Name of the container specified as a DNS_LABEL.
|
|
191
|
+
# Name of the container specified as a DNS_LABEL (RFC 1123).
|
|
190
192
|
# Corresponds to the JSON property `name`
|
|
191
193
|
# @return [String]
|
|
192
194
|
attr_accessor :name
|
|
@@ -1143,6 +1145,17 @@ module Google
|
|
|
1143
1145
|
# @return [String]
|
|
1144
1146
|
attr_accessor :encryption_key
|
|
1145
1147
|
|
|
1148
|
+
# The action to take if the encryption key is revoked.
|
|
1149
|
+
# Corresponds to the JSON property `encryptionKeyRevocationAction`
|
|
1150
|
+
# @return [String]
|
|
1151
|
+
attr_accessor :encryption_key_revocation_action
|
|
1152
|
+
|
|
1153
|
+
# If encryption_key_revocation_action is SHUTDOWN, the duration before shutting
|
|
1154
|
+
# down all instances. The minimum increment is 1 hour.
|
|
1155
|
+
# Corresponds to the JSON property `encryptionKeyShutdownDuration`
|
|
1156
|
+
# @return [String]
|
|
1157
|
+
attr_accessor :encryption_key_shutdown_duration
|
|
1158
|
+
|
|
1146
1159
|
# Output only. A system-generated fingerprint for this version of the resource.
|
|
1147
1160
|
# May be used to detect modification conflict during updates.
|
|
1148
1161
|
# Corresponds to the JSON property `etag`
|
|
@@ -1272,6 +1285,8 @@ module Google
|
|
|
1272
1285
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1273
1286
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
1274
1287
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
|
1288
|
+
@encryption_key_revocation_action = args[:encryption_key_revocation_action] if args.key?(:encryption_key_revocation_action)
|
|
1289
|
+
@encryption_key_shutdown_duration = args[:encryption_key_shutdown_duration] if args.key?(:encryption_key_shutdown_duration)
|
|
1275
1290
|
@etag = args[:etag] if args.key?(:etag)
|
|
1276
1291
|
@execution_environment = args[:execution_environment] if args.key?(:execution_environment)
|
|
1277
1292
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
@@ -2237,7 +2252,9 @@ module Google
|
|
|
2237
2252
|
class GoogleCloudRunV2Volume
|
|
2238
2253
|
include Google::Apis::Core::Hashable
|
|
2239
2254
|
|
|
2240
|
-
# Represents a
|
|
2255
|
+
# Represents a set of Cloud SQL instances. Each one will be available under /
|
|
2256
|
+
# cloudsql/[instance]. Visit https://cloud.google.com/sql/docs/mysql/connect-run
|
|
2257
|
+
# for more information on how to connect Cloud SQL and Cloud Run.
|
|
2241
2258
|
# Corresponds to the JSON property `cloudSqlInstance`
|
|
2242
2259
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2CloudSqlInstance]
|
|
2243
2260
|
attr_accessor :cloud_sql_instance
|
|
@@ -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.27.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221211"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -591,6 +591,8 @@ module Google
|
|
|
591
591
|
property :create_time, as: 'createTime'
|
|
592
592
|
property :delete_time, as: 'deleteTime'
|
|
593
593
|
property :encryption_key, as: 'encryptionKey'
|
|
594
|
+
property :encryption_key_revocation_action, as: 'encryptionKeyRevocationAction'
|
|
595
|
+
property :encryption_key_shutdown_duration, as: 'encryptionKeyShutdownDuration'
|
|
594
596
|
property :etag, as: 'etag'
|
|
595
597
|
property :execution_environment, as: 'executionEnvironment'
|
|
596
598
|
property :expire_time, as: 'expireTime'
|
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.27.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:
|
|
11
|
+
date: 2023-01-04 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.27.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: []
|