google-apis-run_v1 0.13.0 → 0.14.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: 9d8915bdc8e96998dfbda157e9573acb40247f75d82621c42cd6e478d566fffb
4
- data.tar.gz: facc13f30c42962996499d94e319b4f2a403d604dabe232f22843500476eeed0
3
+ metadata.gz: c9895d5b99f87c77c3c7232928674a515bfc09151272679b02812298134c9584
4
+ data.tar.gz: e9d5485a47b3df4c1168d6e0b816313d276e481822a7bc17af944d016959e7c2
5
5
  SHA512:
6
- metadata.gz: 5c8dc33fb66b7c23035eb423034c6b161619f02f181668068fd2256a594cdd9f7a8780547611e2477c9b1278cc779a346ea2ff2f924f316a4c612471e9dd84b4
7
- data.tar.gz: e42aee4e5975501a68c8e7344904c43d9c42bcce3d700e02e7af7f4b6b94c2bbcd0997a98a865f5fa89b1ec3568e33e4f638c800b836cac596da51e25b6adacf
6
+ metadata.gz: a49aa58c30f20ab625d779aa514ec80122c40403f30ec32fa9c163286e2e059408de0961ddf5431be81ad698f2dac488637a6e4fe0bf78588b2fab37596277f7
7
+ data.tar.gz: 6703a068a867efb8c4a75955b25fc2eb9cf6aee9ce9965989b9bdf8441a0adcdf6f430bbeac027d6444b121b0979ff0fd4c6bfab5d295a87651e79d8093d4c9f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.14.0 (2021-10-06)
4
+
5
+ * Regenerated from discovery document revision 20211001
6
+
3
7
  ### v0.13.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210813
@@ -292,10 +292,17 @@ module Google
292
292
  class ConfigMapVolumeSource
293
293
  include Google::Apis::Core::Hashable
294
294
 
295
- # (Optional) Mode bits to use on created files by default. Must be a value
296
- # between 0 and 0777. Defaults to 0644. Directories within the path are not
297
- # affected by this setting. This might be in conflict with other options that
298
- # affect the file mode, like fsGroup, and the result can be other mode bits set.
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 0000 and
1085
- # 0777. If not specified, the volume defaultMode will be used. This might be in
1086
- # conflict with other options that affect the file mode, like fsGroup, and the
1087
- # result can be other mode bits set.
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
- # (Optional) Mode bits to use on created files by default. Must be a value
2371
- # between 0000 and 0777. Defaults to 0644. Directories within the path are not
2372
- # affected by this setting. This might be in conflict with other options that
2373
- # affect the file mode, like fsGroup, and the result can be other mode bits set.
2374
- # NOTE: This is an integer representation of the mode bits. So, the integer
2375
- # value should look exactly as the chmod numeric notation, i.e. Unix chmod "777"
2376
- # (a=rwx) should have the integer value 777.
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.13.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 = "20210813"
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.13.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-09-06 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.13.0
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: []