google-apis-run_v1alpha1 0.15.0 → 0.19.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: 96dca461ec06c0be730c6aae2717bab5aefab5d4b15858b404689554295e6d54
4
+ data.tar.gz: 98ee5d7b7cee36f1eeab447a4834a3248caef3ff6a9f4e53c32ca6c0a8a8fd30
5
5
  SHA512:
6
- metadata.gz: 33548c2d6372c3fc012ffa886b4ab29b34bbdc5d5f54586254589553cbee13f35bb2e2a460fded1e366c2168cacfd7b19d97b51682d81fd00a48096412a988f9
7
- data.tar.gz: 809924f3348d4bf06a903c17e53a6d3a4c7dbd000eda70c112f4f95ad720758c4cbf1d42e541e9b67ae2172c1f618d62d1530041717829d912a5eb7147ea427b
6
+ metadata.gz: c9571b536e171d4a7b43abb5b54f2136fbe29322291a7a7618c63859e50d54144acd54c41ad7c6ea6958189f52130c2c816a4b8b2154ff960e799d3288d5b046
7
+ data.tar.gz: fa55856c51043c3e48b835621486b98f245cea2306feeee374b30be713206f4e7b1ea6afe17b60b657eb222666792e2c02ad6722b4057fefab58e41f0c139c49
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-run_v1alpha1
2
2
 
3
+ ### v0.19.0 (2021-12-16)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.18.0 (2021-11-17)
8
+
9
+ * Regenerated from discovery document revision 20211112
10
+
11
+ ### v0.17.0 (2021-10-20)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.16.0 (2021-10-07)
16
+
17
+ * Regenerated from discovery document revision 20211001
18
+
3
19
  ### v0.15.0 (2021-09-17)
4
20
 
5
21
  * Regenerated from discovery document revision 20210910
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/run_v1alpha1"
51
51
  client = Google::Apis::RunV1alpha1::CloudRunService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Run service in particular.)
67
67
 
@@ -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
@@ -1502,12 +1515,12 @@ module Google
1502
1515
  attr_accessor :limits
1503
1516
 
1504
1517
  # (Optional) Only memory and CPU are supported. Note: The only supported values
1505
- # for CPU are '1' and '2'. Requests describes the minimum amount of compute
1506
- # resources required. If Requests is omitted for a container, it defaults to
1507
- # Limits if that is explicitly specified, otherwise to an implementation-defined
1508
- # value. The values of the map is string form of the 'quantity' k8s type: https:/
1509
- # /github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
1510
- # pkg/api/resource/quantity.go
1518
+ # for CPU are '1', '2', and '4'. Requests describes the minimum amount of
1519
+ # compute resources required. If Requests is omitted for a container, it
1520
+ # defaults to Limits if that is explicitly specified, otherwise to an
1521
+ # implementation-defined value. The values of the map is string form of the '
1522
+ # quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/
1523
+ # staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
1511
1524
  # Corresponds to the JSON property `requests`
1512
1525
  # @return [Hash<String,String>]
1513
1526
  attr_accessor :requests
@@ -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.19.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 = "20211112"
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.19.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: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-run_v1alpha1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1alpha1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1alpha1/v0.19.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Run Admin API V1alpha1