google-apis-dataflow_v1b3 0.26.0 → 0.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 923ff68ca6439d261d2e12b6b6ad17d069b1b62e5e84650c4564afd5d1712f42
4
- data.tar.gz: 53e45f8af68bfe964cb44d331209ce41b3c8ff5fb79272978f1cacf83b48c2b9
3
+ metadata.gz: af6461050ecc687ed401f0e61fa89b51097fd25d1cca002405276ae77a2a5590
4
+ data.tar.gz: fccbcdf088683572ab84c558c0232c2c0b876bc2566370a5d29d87f9b49ffc59
5
5
  SHA512:
6
- metadata.gz: ce01ec1c286a6704ba2b02e8839e75e0e05f9b54e54e3e5fec8896ac463689ce40b87df0a5804d6d3394ce602b1b874ac7ba6eb1b1921e2f19483fc48a646f55
7
- data.tar.gz: '09e20dde3e591c4a4c05ab898f24277b9d0454376d71073e2ba1d4e7c8d8263dd88aaf5c07479f8fda9a07acdbf8d57a76e6d6091e38f8ae04c952d6a96146a3'
6
+ metadata.gz: 02a726b0f2a32b44876b443a1cb1aab431101d287087c7f10db68a83398494b662d876e32a6a3fdaeee79934ba99f45248b386c64d6e22e09ce4e6c9683053ad
7
+ data.tar.gz: 113ada6902811d87a0c7479c58e9a338b22bf35d8df4923257887fd30b1a0fd76a7fd565deb0dd15f2cca210b17fc90ad231ed6290f976b9a427f05ce71cb68a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.27.0 (2022-09-10)
4
+
5
+ * Regenerated from discovery document revision 20220904
6
+
3
7
  ### v0.26.0 (2022-08-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20220812
@@ -3509,6 +3509,11 @@ module Google
3509
3509
  # @return [Array<Google::Apis::DataflowV1b3::TransformSummary>]
3510
3510
  attr_accessor :original_pipeline_transform
3511
3511
 
3512
+ # A hash value of the submitted pipeline portable graph step names if exists.
3513
+ # Corresponds to the JSON property `stepNamesHash`
3514
+ # @return [String]
3515
+ attr_accessor :step_names_hash
3516
+
3512
3517
  def initialize(**args)
3513
3518
  update!(**args)
3514
3519
  end
@@ -3518,6 +3523,7 @@ module Google
3518
3523
  @display_data = args[:display_data] if args.key?(:display_data)
3519
3524
  @execution_pipeline_stage = args[:execution_pipeline_stage] if args.key?(:execution_pipeline_stage)
3520
3525
  @original_pipeline_transform = args[:original_pipeline_transform] if args.key?(:original_pipeline_transform)
3526
+ @step_names_hash = args[:step_names_hash] if args.key?(:step_names_hash)
3521
3527
  end
3522
3528
  end
3523
3529
 
@@ -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.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220812"
25
+ REVISION = "20220904"
26
26
  end
27
27
  end
28
28
  end
@@ -1958,6 +1958,7 @@ module Google
1958
1958
 
1959
1959
  collection :original_pipeline_transform, as: 'originalPipelineTransform', class: Google::Apis::DataflowV1b3::TransformSummary, decorator: Google::Apis::DataflowV1b3::TransformSummary::Representation
1960
1960
 
1961
+ property :step_names_hash, as: 'stepNamesHash'
1961
1962
  end
1962
1963
  end
1963
1964
 
@@ -126,6 +126,8 @@ module Google
126
126
  # @param [String] location
127
127
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
128
128
  # regional-endpoints) that contains this job.
129
+ # @param [String] name
130
+ # Optional. The job name. Optional.
129
131
  # @param [Fixnum] page_size
130
132
  # If there are many jobs, limit response to at most this many. The actual number
131
133
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -153,13 +155,14 @@ module Google
153
155
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
154
156
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
155
157
  # @raise [Google::Apis::AuthorizationError] Authorization is required
156
- def aggregated_project_job(project_id, filter: nil, location: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
158
+ def aggregated_project_job(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
157
159
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs:aggregated', options)
158
160
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
159
161
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
160
162
  command.params['projectId'] = project_id unless project_id.nil?
161
163
  command.query['filter'] = filter unless filter.nil?
162
164
  command.query['location'] = location unless location.nil?
165
+ command.query['name'] = name unless name.nil?
163
166
  command.query['pageSize'] = page_size unless page_size.nil?
164
167
  command.query['pageToken'] = page_token unless page_token.nil?
165
168
  command.query['view'] = view unless view.nil?
@@ -317,6 +320,8 @@ module Google
317
320
  # @param [String] location
318
321
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
319
322
  # regional-endpoints) that contains this job.
323
+ # @param [String] name
324
+ # Optional. The job name. Optional.
320
325
  # @param [Fixnum] page_size
321
326
  # If there are many jobs, limit response to at most this many. The actual number
322
327
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -344,13 +349,14 @@ module Google
344
349
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
345
350
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
346
351
  # @raise [Google::Apis::AuthorizationError] Authorization is required
347
- def list_project_jobs(project_id, filter: nil, location: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
352
+ def list_project_jobs(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
348
353
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs', options)
349
354
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
350
355
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
351
356
  command.params['projectId'] = project_id unless project_id.nil?
352
357
  command.query['filter'] = filter unless filter.nil?
353
358
  command.query['location'] = location unless location.nil?
359
+ command.query['name'] = name unless name.nil?
354
360
  command.query['pageSize'] = page_size unless page_size.nil?
355
361
  command.query['pageToken'] = page_token unless page_token.nil?
356
362
  command.query['view'] = view unless view.nil?
@@ -915,6 +921,8 @@ module Google
915
921
  # regional-endpoints) that contains this job.
916
922
  # @param [String] filter
917
923
  # The kind of filter to use.
924
+ # @param [String] name
925
+ # Optional. The job name. Optional.
918
926
  # @param [Fixnum] page_size
919
927
  # If there are many jobs, limit response to at most this many. The actual number
920
928
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -942,13 +950,14 @@ module Google
942
950
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
943
951
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
944
952
  # @raise [Google::Apis::AuthorizationError] Authorization is required
945
- def list_project_location_jobs(project_id, location, filter: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
953
+ def list_project_location_jobs(project_id, location, filter: nil, name: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
946
954
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/locations/{location}/jobs', options)
947
955
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
948
956
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
949
957
  command.params['projectId'] = project_id unless project_id.nil?
950
958
  command.params['location'] = location unless location.nil?
951
959
  command.query['filter'] = filter unless filter.nil?
960
+ command.query['name'] = name unless name.nil?
952
961
  command.query['pageSize'] = page_size unless page_size.nil?
953
962
  command.query['pageToken'] = page_token unless page_token.nil?
954
963
  command.query['view'] = view unless view.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataflow_v1b3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-22 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
63
63
  post_install_message:
64
64
  rdoc_options: []