google-cloud-tasks-v2beta3 0.8.0 → 0.10.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 +3 -3
- data/lib/google/cloud/tasks/v2beta3/cloud_tasks/client.rb +10 -14
- data/lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/client.rb +1761 -0
- data/lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb +1002 -0
- data/lib/google/cloud/tasks/v2beta3/cloud_tasks/rest.rb +53 -0
- data/lib/google/cloud/tasks/v2beta3/cloud_tasks.rb +7 -1
- data/lib/google/cloud/tasks/v2beta3/cloudtasks_pb.rb +27 -62
- data/lib/google/cloud/tasks/v2beta3/queue_pb.rb +27 -50
- data/lib/google/cloud/tasks/v2beta3/rest.rb +37 -0
- data/lib/google/cloud/tasks/v2beta3/target_pb.rb +23 -50
- data/lib/google/cloud/tasks/v2beta3/task_pb.rb +28 -29
- data/lib/google/cloud/tasks/v2beta3/version.rb +1 -1
- data/lib/google/cloud/tasks/v2beta3.rb +7 -2
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/tasks/v2beta3/queue.rb +83 -63
- data/proto_docs/google/cloud/tasks/v2beta3/target.rb +80 -54
- data/proto_docs/google/cloud/tasks/v2beta3/task.rb +30 -19
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- 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: 20374139f661f5a687aff76ba1c7ce753c28cf2ffe377c8cd686d82a5f81c4e4
|
4
|
+
data.tar.gz: 4c1e36c74ea0f2840060d2942b4c5d97b4787781bcef8670670801a585b53ea0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ba416b1b9950b1001414f41604a03f7a6be2a9fdd16b270ebe4c8118749a7042ddeaab568be6eeb594a954bdc837ff853730d414323556abdc104c8731f9d9c
|
7
|
+
data.tar.gz: 0d7dcb504c0be8c3d05af0041dc9d063ce55a4001a65f95854be35e654b50e79588271a577df296b30538f5b417e774cd16016e35fc02fc4b043ee30d94317ec
|
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 V2beta3 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,8 +46,8 @@ 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/
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
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
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/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.
|
53
53
|
|
@@ -279,13 +279,11 @@ module Google
|
|
279
279
|
# # Call the list_queues method.
|
280
280
|
# result = client.list_queues request
|
281
281
|
#
|
282
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
283
|
-
# #
|
284
|
-
#
|
285
|
-
# # methods are also available for managing paging directly.
|
286
|
-
# result.each do |response|
|
282
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
283
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
284
|
+
# result.each do |item|
|
287
285
|
# # Each element is of type ::Google::Cloud::Tasks::V2beta3::Queue.
|
288
|
-
# p
|
286
|
+
# p item
|
289
287
|
# end
|
290
288
|
#
|
291
289
|
def list_queues request, options = nil
|
@@ -1397,13 +1395,11 @@ module Google
|
|
1397
1395
|
# # Call the list_tasks method.
|
1398
1396
|
# result = client.list_tasks request
|
1399
1397
|
#
|
1400
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
1401
|
-
# #
|
1402
|
-
#
|
1403
|
-
# # methods are also available for managing paging directly.
|
1404
|
-
# result.each do |response|
|
1398
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1399
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1400
|
+
# result.each do |item|
|
1405
1401
|
# # Each element is of type ::Google::Cloud::Tasks::V2beta3::Task.
|
1406
|
-
# p
|
1402
|
+
# p item
|
1407
1403
|
# end
|
1408
1404
|
#
|
1409
1405
|
def list_tasks request, options = nil
|
@@ -1936,9 +1932,9 @@ module Google
|
|
1936
1932
|
# * (`String`) The path to a service account key file in JSON format
|
1937
1933
|
# * (`Hash`) A service account key as a Hash
|
1938
1934
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1939
|
-
# (see the [googleauth docs](https://
|
1935
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1940
1936
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1941
|
-
# (see the [signet docs](https://
|
1937
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1942
1938
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1943
1939
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1944
1940
|
# * (`nil`) indicating no credentials
|