google-apis-run_v1alpha1 0.15.0 → 0.16.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: 0e59a802ebf069462046eaf965f3dffded472a5280ef62c2fbd01e30a81812c6
4
- data.tar.gz: f1cf2b12f673c98616234c5b0d9557b717333e64e4e170c07dfa1c8d79924125
3
+ metadata.gz: 979b537e64fd768153ba17bef2a64761a13b655fae6fecd21d24975adb98798b
4
+ data.tar.gz: 8bee5c0587dda3369a4ecab856378c6bb9b04139e2a759193a3d1f434ee3642e
5
5
  SHA512:
6
- metadata.gz: 33548c2d6372c3fc012ffa886b4ab29b34bbdc5d5f54586254589553cbee13f35bb2e2a460fded1e366c2168cacfd7b19d97b51682d81fd00a48096412a988f9
7
- data.tar.gz: 809924f3348d4bf06a903c17e53a6d3a4c7dbd000eda70c112f4f95ad720758c4cbf1d42e541e9b67ae2172c1f618d62d1530041717829d912a5eb7147ea427b
6
+ metadata.gz: db9311d4313c8cfd6b361bc21a26b1b91d9a69bc9919c547541cc2615e7b985059279836132f18da541cf7c0a4a0271bdcd7f62bf1451cb5d62bc5510291866b
7
+ data.tar.gz: 6dc39cb6398015a06607a8471a1c9f86048fa5dcec792011fad875b1394474015e3ccff823598a69fa79067278b6578f652117db5aede8f8ec03ff11811055a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1alpha1
2
2
 
3
+ ### v0.16.0 (2021-10-07)
4
+
5
+ * Regenerated from discovery document revision 20211001
6
+
3
7
  ### v0.15.0 (2021-09-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20210910
@@ -103,10 +103,17 @@ module Google
103
103
  class ConfigMapVolumeSource
104
104
  include Google::Apis::Core::Hashable
105
105
 
106
- # (Optional) Mode bits to use on created files by default. Must be a value
107
- # between 0 and 0777. Defaults to 0644. Directories within the path are not
108
- # affected by this setting. This might be in conflict with other options that
109
- # affect the file mode, like fsGroup, and the result can be other mode bits set.
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 0000 and
1034
- # 0777. If not specified, the volume defaultMode will be used. This might be in
1035
- # conflict with other options that affect the file mode, like fsGroup, and the
1036
- # result can be other mode bits set.
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
- # (Optional) Mode bits to use on created files by default. Must be a value
1615
- # between 0000 and 0777. Defaults to 0644. Directories within the path are not
1616
- # affected by this setting. This might be in conflict with other options that
1617
- # affect the file mode, like fsGroup, and the result can be other mode bits set.
1618
- # NOTE: This is an integer representation of the mode bits. So, the integer
1619
- # value should look exactly as the chmod numeric notation, i.e. Unix chmod "777"
1620
- # (a=rwx) should have the integer value 777.
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.15.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 = "20210910"
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.15.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-09-20 00:00:00.000000000 Z
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.15.0
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: []