google-apis-run_v1 0.13.0 → 0.14.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_v1/classes.rb +38 -16
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- 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: c9895d5b99f87c77c3c7232928674a515bfc09151272679b02812298134c9584
|
4
|
+
data.tar.gz: e9d5485a47b3df4c1168d6e0b816313d276e481822a7bc17af944d016959e7c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a49aa58c30f20ab625d779aa514ec80122c40403f30ec32fa9c163286e2e059408de0961ddf5431be81ad698f2dac488637a6e4fe0bf78588b2fab37596277f7
|
7
|
+
data.tar.gz: 6703a068a867efb8c4a75955b25fc2eb9cf6aee9ce9965989b9bdf8441a0adcdf6f430bbeac027d6444b121b0979ff0fd4c6bfab5d295a87651e79d8093d4c9f
|
data/CHANGELOG.md
CHANGED
@@ -292,10 +292,17 @@ module Google
|
|
292
292
|
class ConfigMapVolumeSource
|
293
293
|
include Google::Apis::Core::Hashable
|
294
294
|
|
295
|
-
# (Optional)
|
296
|
-
# between
|
297
|
-
#
|
298
|
-
#
|
295
|
+
# (Optional) Integer representation of mode bits to use on created files by
|
296
|
+
# default. Must be a value between 01 and 0777 (octal). If 0 or not set, it will
|
297
|
+
# default to 0644. Directories within the path are not affected by this setting.
|
298
|
+
# Notes * Internally, a umask of 0222 will be applied to any non-zero value. *
|
299
|
+
# This is an integer representation of the mode bits. So, the octal integer
|
300
|
+
# value should look exactly as the chmod numeric notation with a leading zero.
|
301
|
+
# Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10).
|
302
|
+
# For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (
|
303
|
+
# u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
|
304
|
+
# conflict with other options that affect the file mode, like fsGroup, and the
|
305
|
+
# result can be other mode bits set.
|
299
306
|
# Corresponds to the JSON property `defaultMode`
|
300
307
|
# @return [Fixnum]
|
301
308
|
attr_accessor :default_mode
|
@@ -1081,10 +1088,16 @@ module Google
|
|
1081
1088
|
# @return [String]
|
1082
1089
|
attr_accessor :key
|
1083
1090
|
|
1084
|
-
# (Optional) Mode bits to use on this file, must be a value between
|
1085
|
-
#
|
1086
|
-
#
|
1087
|
-
#
|
1091
|
+
# (Optional) Mode bits to use on this file, must be a value between 01 and 0777 (
|
1092
|
+
# octal). If 0 or not set, the Volume's default mode will be used. Notes *
|
1093
|
+
# Internally, a umask of 0222 will be applied to any non-zero value. * This is
|
1094
|
+
# an integer representation of the mode bits. So, the octal integer value should
|
1095
|
+
# look exactly as the chmod numeric notation with a leading zero. Some examples:
|
1096
|
+
# for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=
|
1097
|
+
# rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx),
|
1098
|
+
# set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
|
1099
|
+
# options that affect the file mode, like fsGroup, and the result can be other
|
1100
|
+
# mode bits set.
|
1088
1101
|
# Corresponds to the JSON property `mode`
|
1089
1102
|
# @return [Fixnum]
|
1090
1103
|
attr_accessor :mode
|
@@ -1767,7 +1780,12 @@ module Google
|
|
1767
1780
|
|
1768
1781
|
# Associates a list of `members` to a `role`. Optionally, may specify a `
|
1769
1782
|
# condition` that determines how and when the `bindings` are applied. Each of
|
1770
|
-
# the `bindings` must contain at least one member.
|
1783
|
+
# the `bindings` must contain at least one member. The `bindings` in a `Policy`
|
1784
|
+
# can refer to up to 1,500 members; up to 250 of these members can be Google
|
1785
|
+
# groups. Each occurrence of a member counts towards these limits. For example,
|
1786
|
+
# if the `bindings` grant 50 different roles to `user:alice@example.com`, and
|
1787
|
+
# not to any other member, then you can add another 1,450 members to the `
|
1788
|
+
# bindings` in the `Policy`.
|
1771
1789
|
# Corresponds to the JSON property `bindings`
|
1772
1790
|
# @return [Array<Google::Apis::RunV1::Binding>]
|
1773
1791
|
attr_accessor :bindings
|
@@ -2367,13 +2385,17 @@ module Google
|
|
2367
2385
|
class SecretVolumeSource
|
2368
2386
|
include Google::Apis::Core::Hashable
|
2369
2387
|
|
2370
|
-
#
|
2371
|
-
# between
|
2372
|
-
#
|
2373
|
-
#
|
2374
|
-
#
|
2375
|
-
#
|
2376
|
-
# (a=rwx)
|
2388
|
+
# Integer representation of mode bits to use on created files by default. Must
|
2389
|
+
# be a value between 01 and 0777 (octal). If 0 or not set, it will default to
|
2390
|
+
# 0644. Directories within the path are not affected by this setting. Notes *
|
2391
|
+
# Internally, a umask of 0222 will be applied to any non-zero value. * This is
|
2392
|
+
# an integer representation of the mode bits. So, the octal integer value should
|
2393
|
+
# look exactly as the chmod numeric notation with a leading zero. Some examples:
|
2394
|
+
# for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=
|
2395
|
+
# rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx),
|
2396
|
+
# set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
|
2397
|
+
# options that affect the file mode, like fsGroup, and the result can be other
|
2398
|
+
# mode bits set.
|
2377
2399
|
# Corresponds to the JSON property `defaultMode`
|
2378
2400
|
# @return [Fixnum]
|
2379
2401
|
attr_accessor :default_mode
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211001"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.14.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-10-11 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/master/generated/google-apis-run_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-run_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|