google-apis-run_v2 0.17.0 → 0.20.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 +13 -0
- data/lib/google/apis/run_v2/classes.rb +30 -20
- data/lib/google/apis/run_v2/gem_version.rb +3 -3
- data/lib/google/apis/run_v2/representations.rb +1 -0
- data/lib/google/apis/run_v2/service.rb +3 -1
- 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: a7d1b768e889dc4d44a2e989b478e378da49f07ab98b5cc9dae5b071bcd8737b
|
4
|
+
data.tar.gz: 2aef0cc97e2816457cb0420f47f9d0ab7bfbc04adebbdaae9b6f1d70f334f519
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 002c616d05d4d672676ee8854aaf024b822a0644115e565ed91d7fae8966cc72887a3804ff288994255ed6013b97c75352b6a019711acdd2e28e412900c58d7b
|
7
|
+
data.tar.gz: a7236eed24a4438521b1cac4fe818f6b9052096b6fb63e17277fa8e44cfad4ef62a14ce2d042dea241e36f8004c59ca80c8fe16d59988956ead8a9628843345f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.20.0 (2022-08-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220807
|
6
|
+
|
7
|
+
### v0.19.0 (2022-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220731
|
10
|
+
|
11
|
+
### v0.18.0 (2022-07-13)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220710
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.17.0 (2022-07-02)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.8.0
|
@@ -204,6 +204,12 @@ module Google
|
|
204
204
|
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2VolumeMount>]
|
205
205
|
attr_accessor :volume_mounts
|
206
206
|
|
207
|
+
# Container's working directory. If not specified, the container runtime's
|
208
|
+
# default will be used, which might be configured in the container image.
|
209
|
+
# Corresponds to the JSON property `workingDir`
|
210
|
+
# @return [String]
|
211
|
+
attr_accessor :working_dir
|
212
|
+
|
207
213
|
def initialize(**args)
|
208
214
|
update!(**args)
|
209
215
|
end
|
@@ -218,6 +224,7 @@ module Google
|
|
218
224
|
@ports = args[:ports] if args.key?(:ports)
|
219
225
|
@resources = args[:resources] if args.key?(:resources)
|
220
226
|
@volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
|
227
|
+
@working_dir = args[:working_dir] if args.key?(:working_dir)
|
221
228
|
end
|
222
229
|
end
|
223
230
|
|
@@ -1307,7 +1314,7 @@ module Google
|
|
1307
1314
|
include Google::Apis::Core::Hashable
|
1308
1315
|
|
1309
1316
|
# Integer representation of mode bits to use on created files by default. Must
|
1310
|
-
# be a value between 0000 and 0777 (octal), defaulting to
|
1317
|
+
# be a value between 0000 and 0777 (octal), defaulting to 0444. Directories
|
1311
1318
|
# within the path are not affected by this setting. Notes * Internally, a umask
|
1312
1319
|
# of 0222 will be applied to any non-zero value. * This is an integer
|
1313
1320
|
# representation of the mode bits. So, the octal integer value should look
|
@@ -2235,25 +2242,28 @@ module Google
|
|
2235
2242
|
# anyone who is authenticated with a Google account or a service account. * `
|
2236
2243
|
# user:`emailid``: An email address that represents a specific Google account.
|
2237
2244
|
# For example, `alice@example.com` . * `serviceAccount:`emailid``: An email
|
2238
|
-
# address that represents a service account. For example, `my-other-app@
|
2239
|
-
# gserviceaccount.com`. * `
|
2240
|
-
#
|
2241
|
-
#
|
2242
|
-
#
|
2243
|
-
#
|
2244
|
-
#
|
2245
|
-
#
|
2246
|
-
#
|
2247
|
-
#
|
2248
|
-
#
|
2249
|
-
# emailid
|
2250
|
-
#
|
2251
|
-
#
|
2252
|
-
#
|
2253
|
-
#
|
2254
|
-
#
|
2255
|
-
#
|
2256
|
-
#
|
2245
|
+
# address that represents a Google service account. For example, `my-other-app@
|
2246
|
+
# appspot.gserviceaccount.com`. * `serviceAccount:`projectid`.svc.id.goog[`
|
2247
|
+
# namespace`/`kubernetes-sa`]`: An identifier for a [Kubernetes service account](
|
2248
|
+
# https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-
|
2249
|
+
# accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`
|
2250
|
+
# . * `group:`emailid``: An email address that represents a Google group. For
|
2251
|
+
# example, `admins@example.com`. * `deleted:user:`emailid`?uid=`uniqueid``: An
|
2252
|
+
# email address (plus unique identifier) representing a user that has been
|
2253
|
+
# recently deleted. For example, `alice@example.com?uid=123456789012345678901`.
|
2254
|
+
# If the user is recovered, this value reverts to `user:`emailid`` and the
|
2255
|
+
# recovered user retains the role in the binding. * `deleted:serviceAccount:`
|
2256
|
+
# emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
2257
|
+
# representing a service account that has been recently deleted. For example, `
|
2258
|
+
# my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the
|
2259
|
+
# service account is undeleted, this value reverts to `serviceAccount:`emailid``
|
2260
|
+
# and the undeleted service account retains the role in the binding. * `deleted:
|
2261
|
+
# group:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
2262
|
+
# representing a Google group that has been recently deleted. For example, `
|
2263
|
+
# admins@example.com?uid=123456789012345678901`. If the group is recovered, this
|
2264
|
+
# value reverts to `group:`emailid`` and the recovered group retains the role in
|
2265
|
+
# the binding. * `domain:`domain``: The G Suite domain (primary) that represents
|
2266
|
+
# all the users of that domain. For example, `google.com` or `example.com`.
|
2257
2267
|
# Corresponds to the JSON property `members`
|
2258
2268
|
# @return [Array<String>]
|
2259
2269
|
attr_accessor :members
|
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -336,6 +336,7 @@ module Google
|
|
336
336
|
|
337
337
|
collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount, decorator: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount::Representation
|
338
338
|
|
339
|
+
property :working_dir, as: 'workingDir'
|
339
340
|
end
|
340
341
|
end
|
341
342
|
|
@@ -710,7 +710,9 @@ module Google
|
|
710
710
|
# Creates a new Service in a given project and location.
|
711
711
|
# @param [String] parent
|
712
712
|
# Required. The location and project in which this service should be created.
|
713
|
-
# Format: projects/`projectnumber`/locations/`location`
|
713
|
+
# Format: projects/`projectnumber`/locations/`location` Only lowercase, digits,
|
714
|
+
# and hyphens; must begin with letter, and may not end with hyphen; must contain
|
715
|
+
# fewer than 50 characters.
|
714
716
|
# @param [Google::Apis::RunV2::GoogleCloudRunV2Service] google_cloud_run_v2_service_object
|
715
717
|
# @param [String] service_id
|
716
718
|
# Required. The unique identifier for the Service. The name of the service
|
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.20.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-
|
11
|
+
date: 2022-08-15 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.20.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: []
|