Class: Google::Cloud::Tasks::V2beta3::CloudTasks::Rest::ServiceStub
- Inherits:
-
Object
- Object
- Google::Cloud::Tasks::V2beta3::CloudTasks::Rest::ServiceStub
- Defined in:
- lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb
Overview
REST service stub for the CloudTasks service. Service stub contains baseline method implementations including transcoding, making the REST call, and deserialing the response.
Instance Method Summary collapse
-
#buffer_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::BufferTaskResponse
Baseline implementation for the buffer_task REST call.
-
#create_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the create_queue REST call.
-
#create_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the create_task REST call.
-
#delete_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Protobuf::Empty
Baseline implementation for the delete_queue REST call.
-
#delete_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Protobuf::Empty
Baseline implementation for the delete_task REST call.
-
#get_iam_policy(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::Policy
Baseline implementation for the get_iam_policy REST call.
-
#get_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the get_queue REST call.
-
#get_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the get_task REST call.
-
#initialize(endpoint:, endpoint_template:, universe_domain:, credentials:) ⇒ ServiceStub
constructor
A new instance of ServiceStub.
-
#list_queues(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::ListQueuesResponse
Baseline implementation for the list_queues REST call.
-
#list_tasks(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::ListTasksResponse
Baseline implementation for the list_tasks REST call.
-
#pause_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the pause_queue REST call.
-
#purge_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the purge_queue REST call.
-
#resume_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the resume_queue REST call.
-
#run_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the run_task REST call.
-
#set_iam_policy(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::Policy
Baseline implementation for the set_iam_policy REST call.
-
#test_iam_permissions(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::TestIamPermissionsResponse
Baseline implementation for the test_iam_permissions REST call.
-
#universe_domain ⇒ String
The effective universe domain.
-
#update_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the update_queue REST call.
Constructor Details
#initialize(endpoint:, endpoint_template:, universe_domain:, credentials:) ⇒ ServiceStub
Returns a new instance of ServiceStub.
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 33 def initialize endpoint:, endpoint_template:, universe_domain:, credentials: # These require statements are intentionally placed here to initialize # the REST modules only when it's required. require "gapic/rest" @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, endpoint_template: endpoint_template, universe_domain: universe_domain, credentials: credentials, numeric_enums: true, raise_faraday_errors: false end |
Instance Method Details
#buffer_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::BufferTaskResponse
Baseline implementation for the buffer_task REST call
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 677 def buffer_task request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_buffer_task_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::BufferTaskResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#create_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the create_queue REST call
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 145 def create_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#create_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the create_task REST call
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 563 def create_task request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_task_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Task.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#delete_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Protobuf::Empty
Baseline implementation for the delete_queue REST call
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 221 def delete_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#delete_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Protobuf::Empty
Baseline implementation for the delete_task REST call
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 601 def delete_task request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_task_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#get_iam_policy(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::Policy
Baseline implementation for the get_iam_policy REST call
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 373 def get_iam_policy request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_iam_policy_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Iam::V1::Policy.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#get_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the get_queue REST call
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 107 def get_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#get_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the get_task REST call
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 525 def get_task request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_task_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Task.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#list_queues(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::ListQueuesResponse
Baseline implementation for the list_queues REST call
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 69 def list_queues request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_queues_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::ListQueuesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#list_tasks(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::ListTasksResponse
Baseline implementation for the list_tasks REST call
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 487 def list_tasks request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_tasks_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::ListTasksResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#pause_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the pause_queue REST call
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 297 def pause_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_pause_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#purge_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the purge_queue REST call
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 259 def purge_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_purge_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#resume_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the resume_queue REST call
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 335 def resume_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_resume_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#run_task(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Task
Baseline implementation for the run_task REST call
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 639 def run_task request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_run_task_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Task.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#set_iam_policy(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::Policy
Baseline implementation for the set_iam_policy REST call
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 411 def set_iam_policy request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_set_iam_policy_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Iam::V1::Policy.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#test_iam_permissions(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Iam::V1::TestIamPermissionsResponse
Baseline implementation for the test_iam_permissions REST call
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 449 def request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub. request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Iam::V1::TestIamPermissionsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |
#universe_domain ⇒ String
The effective universe domain
51 52 53 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 51 def universe_domain @client_stub.universe_domain end |
#update_queue(request_pb, options = nil) {|result, operation| ... } ⇒ ::Google::Cloud::Tasks::V2beta3::Queue
Baseline implementation for the update_queue REST call
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/google/cloud/tasks/v2beta3/cloud_tasks/rest/service_stub.rb', line 183 def update_queue request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_queue_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Tasks::V2beta3::Queue.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end |