google-cloud-tasks-v2 0.6.0 → 0.7.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/AUTHENTICATION.md +1 -1
- data/README.md +2 -2
- data/lib/google/cloud/tasks/v2/cloud_tasks/client.rb +8 -12
- data/lib/google/cloud/tasks/v2/cloud_tasks/rest/client.rb +1751 -0
- data/lib/google/cloud/tasks/v2/cloud_tasks/rest/service_stub.rb +1002 -0
- data/lib/google/cloud/tasks/v2/cloud_tasks/rest.rb +53 -0
- data/lib/google/cloud/tasks/v2/cloud_tasks.rb +7 -1
- data/lib/google/cloud/tasks/v2/rest.rb +37 -0
- data/lib/google/cloud/tasks/v2/version.rb +1 -1
- data/lib/google/cloud/tasks/v2.rb +7 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e335dbffdaa19341f204ea3aa04d814e7c6cacca8e2b1d00f88b1990e8904e98
|
4
|
+
data.tar.gz: 768b11d1dc4e50f8a5b53a1b7133010c5359d2751f92dfada5fdfd4716f341c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bad19ed5b1186213ced4b84712c909697b089b238f160dbb99cdf91539a98d53327d7511e929f1df90f325e7028f34a29b54693455392a90504ca732281a7d04
|
7
|
+
data.tar.gz: a58ebf53bc1f2c1a8667dcefa0434abdbd840d6301535efd0465c0d85498fb2135eac21a7cfad85259f23d9dd6fc0b53515d044de547e3acd837d7541e912d88
|
data/AUTHENTICATION.md
CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
|
|
114
114
|
To configure your system for this, simply:
|
115
115
|
|
116
116
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
117
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
117
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
118
118
|
3. Write code as if already authenticated.
|
119
119
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Cloud Tasks V2 API
|
2
2
|
|
3
|
-
|
3
|
+
Manages the execution of large numbers of distributed requests.
|
4
4
|
|
5
5
|
Cloud Tasks is a fully managed service that allows you to manage the execution, dispatch and delivery of a large number of distributed tasks. You can asynchronously perform work outside of a user request. Your tasks can be executed on App Engine or any arbitrary HTTP endpoint.
|
6
6
|
|
@@ -46,7 +46,7 @@ for general usage information.
|
|
46
46
|
## Enabling Logging
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/
|
49
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
50
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
@@ -274,13 +274,11 @@ module Google
|
|
274
274
|
# # Call the list_queues method.
|
275
275
|
# result = client.list_queues request
|
276
276
|
#
|
277
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
278
|
-
# #
|
279
|
-
#
|
280
|
-
# # methods are also available for managing paging directly.
|
281
|
-
# result.each do |response|
|
277
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
278
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
279
|
+
# result.each do |item|
|
282
280
|
# # Each element is of type ::Google::Cloud::Tasks::V2::Queue.
|
283
|
-
# p
|
281
|
+
# p item
|
284
282
|
# end
|
285
283
|
#
|
286
284
|
def list_queues request, options = nil
|
@@ -1387,13 +1385,11 @@ module Google
|
|
1387
1385
|
# # Call the list_tasks method.
|
1388
1386
|
# result = client.list_tasks request
|
1389
1387
|
#
|
1390
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
1391
|
-
# #
|
1392
|
-
#
|
1393
|
-
# # methods are also available for managing paging directly.
|
1394
|
-
# result.each do |response|
|
1388
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1389
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1390
|
+
# result.each do |item|
|
1395
1391
|
# # Each element is of type ::Google::Cloud::Tasks::V2::Task.
|
1396
|
-
# p
|
1392
|
+
# p item
|
1397
1393
|
# end
|
1398
1394
|
#
|
1399
1395
|
def list_tasks request, options = nil
|