google-apis-dataflow_v1b3 0.29.0 → 0.30.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: f62f68fcb37855f7eeb902224db0f4460cb016b41216ef3c0c9eada468cd885c
4
- data.tar.gz: 0f1cc0cb8137645b7199e5900332c823a342c9bf88674d8dc022cefb39d20de8
3
+ metadata.gz: 50eb99bf53f9ff6faf6856e57f98d3b9cb8db9963c90acae141c6af6f3d5884b
4
+ data.tar.gz: eea5c0784fea9e7c2c22b9b98711f148d92bdb5e2b211ef37f472b18153d50ab
5
5
  SHA512:
6
- metadata.gz: 1bcdd16ff9e6c68a7e7bf9eb42bb55f8761d2d50f427276feff4176d520828c35b9bbd6c626941a09431e367f6f0047de3b724df6e99bcc1cbd2cacfae18e724
7
- data.tar.gz: 4990c5941296d7b0c1e5050dfaea6941becebca16be607a1311c9cba2922190abc49fcfda14f49d437030e715881d94581d86c4734c2f886ef8905401a1b7be3
6
+ metadata.gz: c730ae3c412fb5c4da818cde17895ed7a7fadd507c0eaf44e3e07116c08457ad09eff695e93473ff2b37c747cd808f94106d28bec08044c3b39d9142e8aaae26
7
+ data.tar.gz: 837ecc78f9ec6917abdcc94f2034f3126ebf315c8822c8441f63ebfa448daeffb4cfb27d3992fefb455274bb25c6c7738f0f15423c64b7d65245dd24908a9794
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.30.0 (2022-09-30)
4
+
5
+ * Regenerated from discovery document revision 20220920
6
+
3
7
  ### v0.29.0 (2022-09-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20220916
@@ -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.29.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220916"
25
+ REVISION = "20220920"
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.29.0
4
+ version: 0.30.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-03 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.30.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: []