google-apis-dataflow_v1b3 0.70.0 → 0.72.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cfad9dbbd6672918da1a20664b6afb3e9d505cb628234dbf865a38192f319a0
4
- data.tar.gz: 54f32099e992baa52f133e91d7e90377caa999c6a8014fc5343fc763275611a6
3
+ metadata.gz: 0730c0e15fe33bbd9b56c91742890de04aab798e0d6363847fbf200a691e0c90
4
+ data.tar.gz: 440bd4f08ed4f2aa896eb91a005f32329461ba788972965cea12f8dce9ce005b
5
5
  SHA512:
6
- metadata.gz: 24204de4df0c9790ad37a6d0e7950a18e2a5ddbea4c9fc4b89ff1f95f3d5cd12822f9c6222fb7c63790ca2f6d21e8a2810482d540bf5a97b0b4858ad771416af
7
- data.tar.gz: 6650c5c2db80a704bea16cbb5cfadf133a2341b6bd7f08c2d4f4b887f496a899b757d7ee2532b18697d15e87f7e54654796ab4caa4aa926449e4ce9233e6f4e7
6
+ metadata.gz: 6ed8f6f8d8c5561189f5d6e0bf47debec27e66b2edcf905cee0d411eeee07d99b811d268628ab1296a3631cc8aa4524ed1f45918ea10bc5c3954f8d4aa974936
7
+ data.tar.gz: ba6097d1e07af60c771d562aa9d323d1dd5787cad2c226ca6275d1f9f1ff8ea2b0ab7aa448650e1ab4336c248fd5305901505b48e2d516763c76d9123b26652b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.72.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250812
6
+
7
+ ### v0.71.0 (2025-07-20)
8
+
9
+ * Regenerated from discovery document revision 20250716
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.70.0 (2025-05-21)
4
13
 
5
14
  * 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.70.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250519"
25
+ REVISION = "20250812"
26
26
  end
27
27
  end
28
28
  end
@@ -174,8 +174,7 @@ module Google
174
174
  execute_or_queue_command(command, &block)
175
175
  end
176
176
 
177
- # A Job is a multi-stage computation graph run by the Cloud Dataflow service.
178
- # Creates a Cloud Dataflow job. To create a job, we recommend using `projects.
177
+ # Creates a Dataflow job. To create a job, we recommend using `projects.
179
178
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
180
179
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
181
180
  # not recommended, as your job will always start in `us-central1`. Do not enter
@@ -495,42 +494,6 @@ module Google
495
494
  execute_or_queue_command(command, &block)
496
495
  end
497
496
 
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
497
  # Send encoded debug capture data for component.
535
498
  # @param [String] project_id
536
499
  # The project id.
@@ -775,8 +738,7 @@ module Google
775
738
  execute_or_queue_command(command, &block)
776
739
  end
777
740
 
778
- # A Job is a multi-stage computation graph run by the Cloud Dataflow service.
779
- # Creates a Cloud Dataflow job. To create a job, we recommend using `projects.
741
+ # Creates a Dataflow job. To create a job, we recommend using `projects.
780
742
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
781
743
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
782
744
  # not recommended, as your job will always start in `us-central1`. Do not enter
@@ -1150,6 +1112,46 @@ module Google
1150
1112
  execute_or_queue_command(command, &block)
1151
1113
  end
1152
1114
 
1115
+ # Get worker stacktraces from debug capture.
1116
+ # @param [String] project_id
1117
+ # The project id.
1118
+ # @param [String] location
1119
+ # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
1120
+ # regional-endpoints) that contains the job specified by job_id.
1121
+ # @param [String] job_id
1122
+ # The job for which to get stacktraces.
1123
+ # @param [Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest] get_worker_stacktraces_request_object
1124
+ # @param [String] fields
1125
+ # Selector specifying which fields to include in a partial response.
1126
+ # @param [String] quota_user
1127
+ # Available to use for quota purposes for server-side applications. Can be any
1128
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1129
+ # @param [Google::Apis::RequestOptions] options
1130
+ # Request-specific options
1131
+ #
1132
+ # @yield [result, err] Result & error if block supplied
1133
+ # @yieldparam result [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse] parsed result object
1134
+ # @yieldparam err [StandardError] error object if request failed
1135
+ #
1136
+ # @return [Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse]
1137
+ #
1138
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1139
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1140
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1141
+ def get_debug_worker_stacktraces(project_id, location, job_id, get_worker_stacktraces_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1142
+ command = make_simple_command(:post, 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/debug/getWorkerStacktraces', options)
1143
+ command.request_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesRequest::Representation
1144
+ command.request_object = get_worker_stacktraces_request_object
1145
+ command.response_representation = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse::Representation
1146
+ command.response_class = Google::Apis::DataflowV1b3::GetWorkerStacktracesResponse
1147
+ command.params['projectId'] = project_id unless project_id.nil?
1148
+ command.params['location'] = location unless location.nil?
1149
+ command.params['jobId'] = job_id unless job_id.nil?
1150
+ command.query['fields'] = fields unless fields.nil?
1151
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1152
+ execute_or_queue_command(command, &block)
1153
+ end
1154
+
1153
1155
  # Send encoded debug capture data for component.
1154
1156
  # @param [String] project_id
1155
1157
  # 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.70.0
4
+ version: 0.72.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.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.72.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: