google-apis-run_v1alpha1 0.15.0 → 0.16.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_v1alpha1/classes.rb +32 -15
- data/lib/google/apis/run_v1alpha1/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: 979b537e64fd768153ba17bef2a64761a13b655fae6fecd21d24975adb98798b
|
4
|
+
data.tar.gz: 8bee5c0587dda3369a4ecab856378c6bb9b04139e2a759193a3d1f434ee3642e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db9311d4313c8cfd6b361bc21a26b1b91d9a69bc9919c547541cc2615e7b985059279836132f18da541cf7c0a4a0271bdcd7f62bf1451cb5d62bc5510291866b
|
7
|
+
data.tar.gz: 6dc39cb6398015a06607a8471a1c9f86048fa5dcec792011fad875b1394474015e3ccff823598a69fa79067278b6578f652117db5aede8f8ec03ff11811055a8
|
data/CHANGELOG.md
CHANGED
@@ -103,10 +103,17 @@ module Google
|
|
103
103
|
class ConfigMapVolumeSource
|
104
104
|
include Google::Apis::Core::Hashable
|
105
105
|
|
106
|
-
# (Optional)
|
107
|
-
# between
|
108
|
-
#
|
109
|
-
#
|
106
|
+
# (Optional) Integer representation of mode bits to use on created files by
|
107
|
+
# default. Must be a value between 01 and 0777 (octal). If 0 or not set, it will
|
108
|
+
# default to 0644. Directories within the path are not affected by this setting.
|
109
|
+
# Notes * Internally, a umask of 0222 will be applied to any non-zero value. *
|
110
|
+
# This is an integer representation of the mode bits. So, the octal integer
|
111
|
+
# value should look exactly as the chmod numeric notation with a leading zero.
|
112
|
+
# Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10).
|
113
|
+
# For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (
|
114
|
+
# u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
|
115
|
+
# conflict with other options that affect the file mode, like fsGroup, and the
|
116
|
+
# result can be other mode bits set.
|
110
117
|
# Corresponds to the JSON property `defaultMode`
|
111
118
|
# @return [Fixnum]
|
112
119
|
attr_accessor :default_mode
|
@@ -1030,10 +1037,16 @@ module Google
|
|
1030
1037
|
# @return [String]
|
1031
1038
|
attr_accessor :key
|
1032
1039
|
|
1033
|
-
# (Optional) Mode bits to use on this file, must be a value between
|
1034
|
-
#
|
1035
|
-
#
|
1036
|
-
#
|
1040
|
+
# (Optional) Mode bits to use on this file, must be a value between 01 and 0777 (
|
1041
|
+
# octal). If 0 or not set, the Volume's default mode will be used. Notes *
|
1042
|
+
# Internally, a umask of 0222 will be applied to any non-zero value. * This is
|
1043
|
+
# an integer representation of the mode bits. So, the octal integer value should
|
1044
|
+
# look exactly as the chmod numeric notation with a leading zero. Some examples:
|
1045
|
+
# for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=
|
1046
|
+
# rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx),
|
1047
|
+
# set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
|
1048
|
+
# options that affect the file mode, like fsGroup, and the result can be other
|
1049
|
+
# mode bits set.
|
1037
1050
|
# Corresponds to the JSON property `mode`
|
1038
1051
|
# @return [Fixnum]
|
1039
1052
|
attr_accessor :mode
|
@@ -1611,13 +1624,17 @@ module Google
|
|
1611
1624
|
class SecretVolumeSource
|
1612
1625
|
include Google::Apis::Core::Hashable
|
1613
1626
|
|
1614
|
-
#
|
1615
|
-
# between
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
#
|
1619
|
-
#
|
1620
|
-
# (a=rwx)
|
1627
|
+
# Integer representation of mode bits to use on created files by default. Must
|
1628
|
+
# be a value between 01 and 0777 (octal). If 0 or not set, it will default to
|
1629
|
+
# 0644. Directories within the path are not affected by this setting. Notes *
|
1630
|
+
# Internally, a umask of 0222 will be applied to any non-zero value. * This is
|
1631
|
+
# an integer representation of the mode bits. So, the octal integer value should
|
1632
|
+
# look exactly as the chmod numeric notation with a leading zero. Some examples:
|
1633
|
+
# for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=
|
1634
|
+
# rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx),
|
1635
|
+
# set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
|
1636
|
+
# options that affect the file mode, like fsGroup, and the result can be other
|
1637
|
+
# mode bits set.
|
1621
1638
|
# Corresponds to the JSON property `defaultMode`
|
1622
1639
|
# @return [Fixnum]
|
1623
1640
|
attr_accessor :default_mode
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RunV1alpha1
|
18
18
|
# Version of the google-apis-run_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.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_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1alpha1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-run_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|