google-apis-run_v1alpha1 0.16.0 → 0.20.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: 979b537e64fd768153ba17bef2a64761a13b655fae6fecd21d24975adb98798b
4
- data.tar.gz: 8bee5c0587dda3369a4ecab856378c6bb9b04139e2a759193a3d1f434ee3642e
3
+ metadata.gz: 82242f55fd992153914742705e2f2ddd0300d2014a3e674a37698e96a2269f59
4
+ data.tar.gz: b9bd5409b6bcaf68704c8b5067f61d7647c94eae11b9b8841d7ec19a4ac9bdd3
5
5
  SHA512:
6
- metadata.gz: db9311d4313c8cfd6b361bc21a26b1b91d9a69bc9919c547541cc2615e7b985059279836132f18da541cf7c0a4a0271bdcd7f62bf1451cb5d62bc5510291866b
7
- data.tar.gz: 6dc39cb6398015a06607a8471a1c9f86048fa5dcec792011fad875b1394474015e3ccff823598a69fa79067278b6578f652117db5aede8f8ec03ff11811055a8
6
+ metadata.gz: a83fc12f9d63d88a1110d3ddd898e4a043b748f8ea06ef4130e2e6aa04c904a4f3695b0ce55552d9e68bcb9bdb485de8a340d3c780cdfd28fd0480074e5cd365
7
+ data.tar.gz: '096ee8d9d952d7147dc9f1bcf9803f381f207bdaa4747687265e095ceb09a8793ba2e344c897f4508450844f9ed9631541d78f59c6bbf991b6f02cbea7814c34'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-run_v1alpha1
2
2
 
3
+ ### v0.20.0 (2022-01-12)
4
+
5
+ * Regenerated from discovery document revision 20220107
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.19.0 (2021-12-16)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.18.0 (2021-11-17)
13
+
14
+ * Regenerated from discovery document revision 20211112
15
+
16
+ ### v0.17.0 (2021-10-20)
17
+
18
+ * Unspecified changes
19
+
3
20
  ### v0.16.0 (2021-10-07)
4
21
 
5
22
  * Regenerated from discovery document revision 20211001
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
 
@@ -1504,23 +1504,20 @@ module Google
1504
1504
  class ResourceRequirements
1505
1505
  include Google::Apis::Core::Hashable
1506
1506
 
1507
- # (Optional) Only memory and CPU are supported. Note: The only supported values
1508
- # for CPU are '1', '2', and '4'. Setting 4 CPU requires at least 2Gi of memory.
1509
- # Limits describes the maximum amount of compute resources allowed. The values
1510
- # of the map is string form of the 'quantity' k8s type: https://github.com/
1511
- # kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/
1512
- # resource/quantity.go
1507
+ # (Optional) Only memory and CPU are supported. Limits describes the maximum
1508
+ # amount of compute resources allowed. The values of the map is string form of
1509
+ # the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/
1510
+ # staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
1513
1511
  # Corresponds to the JSON property `limits`
1514
1512
  # @return [Hash<String,String>]
1515
1513
  attr_accessor :limits
1516
1514
 
1517
- # (Optional) Only memory and CPU are supported. Note: The only supported values
1518
- # for CPU are '1' and '2'. Requests describes the minimum amount of compute
1519
- # resources required. If Requests is omitted for a container, it defaults to
1520
- # Limits if that is explicitly specified, otherwise to an implementation-defined
1521
- # value. The values of the map is string form of the 'quantity' k8s type: https:/
1522
- # /github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/
1523
- # pkg/api/resource/quantity.go
1515
+ # (Optional) Only memory and CPU are supported. Requests describes the minimum
1516
+ # amount of compute resources required. If Requests is omitted for a container,
1517
+ # it defaults to Limits if that is explicitly specified, otherwise to an
1518
+ # implementation-defined value. The values of the map is string form of the '
1519
+ # quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/
1520
+ # staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
1524
1521
  # Corresponds to the JSON property `requests`
1525
1522
  # @return [Hash<String,String>]
1526
1523
  attr_accessor :requests
@@ -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.16.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211001"
25
+ REVISION = "20220107"
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.16.0
4
+ version: 0.20.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-10-11 00:00:00.000000000 Z
11
+ date: 2022-01-17 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.16.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.20.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.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Run Admin API V1alpha1