google-apis-dataflow_v1b3 0.70.0 → 0.71.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/CHANGELOG.md +5 -0
- data/lib/google/apis/dataflow_v1b3/gem_version.rb +3 -3
- data/lib/google/apis/dataflow_v1b3/service.rb +40 -36
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6364b90fed3bd273baee0584f41043e8fc0993c7a7f09f5e7b24438a86743e7e
|
4
|
+
data.tar.gz: 4f3e70cab54a824b87a4d0f1342316aa36a70e9393c80228a7789fd1ca437a13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 935f103c36f0c7492b5ede9d008f98167a2f162281c53158373887d188cb996e41be0a85114f1238bfc53eb478fa351c812315180f9a60df0e8ceb04d504c326
|
7
|
+
data.tar.gz: '0872dd72da3b239ed0c9f42ff9eda2f27f2ef2f292e189b9b49894ef80672ecadaf739acd8dd10c07ce9c5ac468f8ed625c7b01701d4ab6e0e2083ccaeb7c69f'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.71.0 (2025-07-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250716
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.70.0 (2025-05-21)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250519
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataflowV1b3
|
18
18
|
# Version of the google-apis-dataflow_v1b3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.71.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250716"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -495,42 +495,6 @@ module Google
|
|
495
495
|
execute_or_queue_command(command, &block)
|
496
496
|
end
|
497
497
|
|
498
|
-
# Get worker stacktraces from debug capture.
|
499
|
-
# @param [String] project_id
|
500
|
-
# The project id.
|
501
|
-
# @param [String] job_id
|
502
|
-
# The job for which to get stacktraces.
|
503
|
-
# @param [Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest] get_worker_stacktraces_request_object
|
504
|
-
# @param [String] fields
|
505
|
-
# Selector specifying which fields to include in a partial response.
|
506
|
-
# @param [String] quota_user
|
507
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
508
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
509
|
-
# @param [Google::Apis::RequestOptions] options
|
510
|
-
# Request-specific options
|
511
|
-
#
|
512
|
-
# @yield [result, err] Result & error if block supplied
|
513
|
-
# @yieldparam result [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse] parsed result object
|
514
|
-
# @yieldparam err [StandardError] error object if request failed
|
515
|
-
#
|
516
|
-
# @return [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse]
|
517
|
-
#
|
518
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
519
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
520
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
521
|
-
def get_debug_worker_stacktraces(project_id, job_id, get_worker_stacktraces_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
522
|
-
command = make_simple_command(:post, 'v1b3/projects/{projectId}/jobs/{jobId}/debug/getWorkerStacktraces', options)
|
523
|
-
command.request_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest::Representation
|
524
|
-
command.request_object = get_worker_stacktraces_request_object
|
525
|
-
command.response_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse::Representation
|
526
|
-
command.response_class = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse
|
527
|
-
command.params['projectId'] = project_id unless project_id.nil?
|
528
|
-
command.params['jobId'] = job_id unless job_id.nil?
|
529
|
-
command.query['fields'] = fields unless fields.nil?
|
530
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
531
|
-
execute_or_queue_command(command, &block)
|
532
|
-
end
|
533
|
-
|
534
498
|
# Send encoded debug capture data for component.
|
535
499
|
# @param [String] project_id
|
536
500
|
# The project id.
|
@@ -1150,6 +1114,46 @@ module Google
|
|
1150
1114
|
execute_or_queue_command(command, &block)
|
1151
1115
|
end
|
1152
1116
|
|
1117
|
+
# Get worker stacktraces from debug capture.
|
1118
|
+
# @param [String] project_id
|
1119
|
+
# The project id.
|
1120
|
+
# @param [String] location
|
1121
|
+
# The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
|
1122
|
+
# regional-endpoints) that contains the job specified by job_id.
|
1123
|
+
# @param [String] job_id
|
1124
|
+
# The job for which to get stacktraces.
|
1125
|
+
# @param [Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest] get_worker_stacktraces_request_object
|
1126
|
+
# @param [String] fields
|
1127
|
+
# Selector specifying which fields to include in a partial response.
|
1128
|
+
# @param [String] quota_user
|
1129
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1130
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1131
|
+
# @param [Google::Apis::RequestOptions] options
|
1132
|
+
# Request-specific options
|
1133
|
+
#
|
1134
|
+
# @yield [result, err] Result & error if block supplied
|
1135
|
+
# @yieldparam result [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse] parsed result object
|
1136
|
+
# @yieldparam err [StandardError] error object if request failed
|
1137
|
+
#
|
1138
|
+
# @return [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse]
|
1139
|
+
#
|
1140
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1141
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1142
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1143
|
+
def get_debug_worker_stacktraces(project_id, location, job_id, get_worker_stacktraces_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1144
|
+
command = make_simple_command(:post, 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/debug/getWorkerStacktraces', options)
|
1145
|
+
command.request_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest::Representation
|
1146
|
+
command.request_object = get_worker_stacktraces_request_object
|
1147
|
+
command.response_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse::Representation
|
1148
|
+
command.response_class = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse
|
1149
|
+
command.params['projectId'] = project_id unless project_id.nil?
|
1150
|
+
command.params['location'] = location unless location.nil?
|
1151
|
+
command.params['jobId'] = job_id unless job_id.nil?
|
1152
|
+
command.query['fields'] = fields unless fields.nil?
|
1153
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1154
|
+
execute_or_queue_command(command, &block)
|
1155
|
+
end
|
1156
|
+
|
1153
1157
|
# Send encoded debug capture data for component.
|
1154
1158
|
# @param [String] project_id
|
1155
1159
|
# The project id.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataflow_v1b3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.71.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.71.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|