google-apis-dataflow_v1b3 0.82.0 → 0.83.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: 4e597c6c7be92ae509e2d7bfb1a0506cb0d1ff54d45c59a21b40956ebdd0fb1c
4
- data.tar.gz: '08b147dc0a6657ebbbf129b30ee6b265fef83cf6b1abb2ee24a4602201583924'
3
+ metadata.gz: e26e5699011c511ebf2e1c13e756c713f88a05f2f10482433d5ae79b07522e90
4
+ data.tar.gz: 91735d4ef1b65538dc274376599898370c639c7e142fe3ef8a7f0850912395f3
5
5
  SHA512:
6
- metadata.gz: bfd34bf98da002cad4ca75bcdaec06e4b1be733e5686497d742150d9e7741842e8c04710f0f8f96c2b75829d217dadd46eaa92c78dcc65b79786eb742a87807b
7
- data.tar.gz: '081eb2820195ffc5d0ad4dda47a6935ddf08da925e2cc2c6175d2c867c767611304587401bc98c59dc67da4b8e5a337973c364791420c4e3dcf07425ff13d973'
6
+ metadata.gz: b29964e47f84d124cdc8d06c37f23e21728e60aba29e01d48b15712a224e43381a75a998c8d3bc936a5cd0582f960a28916de648371a948e4872cb16aef35fba
7
+ data.tar.gz: d80adb99c0d652f1db9799da2c0d705528eae6d85d83c158cdf5b0a0ea930d9d6c76ffbc107975922deb56ef86950ae8a5a13b206b3bdccd113d21a3c710b2a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.83.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260825
6
+
3
7
  ### v0.82.0 (2026-08-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20260807
@@ -630,6 +630,57 @@ module Google
630
630
  end
631
631
  end
632
632
 
633
+ # A ConfigStoreSetting resource.
634
+ class ConfigStoreSetting
635
+ include Google::Apis::Core::Hashable
636
+
637
+ # Identifier. The resource name of the setting.
638
+ # Corresponds to the JSON property `name`
639
+ # @return [String]
640
+ attr_accessor :name
641
+
642
+ # Represents a dynamically typed value.
643
+ # Corresponds to the JSON property `value`
644
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSettingValue]
645
+ attr_accessor :value
646
+
647
+ def initialize(**args)
648
+ update!(**args)
649
+ end
650
+
651
+ # Update properties of this object
652
+ def update!(**args)
653
+ @name = args[:name] if args.key?(:name)
654
+ @value = args[:value] if args.key?(:value)
655
+ end
656
+ end
657
+
658
+ # Represents a dynamically typed value.
659
+ class ConfigStoreSettingValue
660
+ include Google::Apis::Core::Hashable
661
+
662
+ # Represents a boolean value.
663
+ # Corresponds to the JSON property `boolValue`
664
+ # @return [Boolean]
665
+ attr_accessor :bool_value
666
+ alias_method :bool_value?, :bool_value
667
+
668
+ # Represents a string value.
669
+ # Corresponds to the JSON property `stringValue`
670
+ # @return [String]
671
+ attr_accessor :string_value
672
+
673
+ def initialize(**args)
674
+ update!(**args)
675
+ end
676
+
677
+ # Update properties of this object
678
+ def update!(**args)
679
+ @bool_value = args[:bool_value] if args.key?(:bool_value)
680
+ @string_value = args[:string_value] if args.key?(:string_value)
681
+ end
682
+ end
683
+
633
684
  # Container Spec.
634
685
  class ContainerSpec
635
686
  include Google::Apis::Core::Hashable
@@ -1507,6 +1558,22 @@ module Google
1507
1558
  end
1508
1559
  end
1509
1560
 
1561
+ # A generic empty message that you can re-use to avoid defining duplicated empty
1562
+ # messages in your APIs. A typical example is to use it as the request or the
1563
+ # response type of an API method. For instance: service Foo ` rpc Bar(google.
1564
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1565
+ class Empty
1566
+ include Google::Apis::Core::Hashable
1567
+
1568
+ def initialize(**args)
1569
+ update!(**args)
1570
+ end
1571
+
1572
+ # Update properties of this object
1573
+ def update!(**args)
1574
+ end
1575
+ end
1576
+
1510
1577
  # Describes the environment in which a Dataflow Job runs.
1511
1578
  class Environment
1512
1579
  include Google::Apis::Core::Hashable
@@ -3367,6 +3434,31 @@ module Google
3367
3434
  end
3368
3435
  end
3369
3436
 
3437
+ # Response message for ListConfigStoreSettings.
3438
+ class ListConfigStoreSettingsResponse
3439
+ include Google::Apis::Core::Hashable
3440
+
3441
+ # The list of ConfigStoreSettings.
3442
+ # Corresponds to the JSON property `configStoreSettings`
3443
+ # @return [Array<Google::Apis::DataflowV1b3::ConfigStoreSetting>]
3444
+ attr_accessor :config_store_settings
3445
+
3446
+ # A token that can be sent as `page_token` to retrieve the next page.
3447
+ # Corresponds to the JSON property `nextPageToken`
3448
+ # @return [String]
3449
+ attr_accessor :next_page_token
3450
+
3451
+ def initialize(**args)
3452
+ update!(**args)
3453
+ end
3454
+
3455
+ # Update properties of this object
3456
+ def update!(**args)
3457
+ @config_store_settings = args[:config_store_settings] if args.key?(:config_store_settings)
3458
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3459
+ end
3460
+ end
3461
+
3370
3462
  # Response to a request to list job messages.
3371
3463
  class ListJobMessagesResponse
3372
3464
  include Google::Apis::Core::Hashable
@@ -4713,6 +4805,44 @@ module Google
4713
4805
  end
4714
4806
  end
4715
4807
 
4808
+ # Request message for ResolveConfigStoreSetting.
4809
+ class ResolveConfigStoreSettingRequest
4810
+ include Google::Apis::Core::Hashable
4811
+
4812
+ def initialize(**args)
4813
+ update!(**args)
4814
+ end
4815
+
4816
+ # Update properties of this object
4817
+ def update!(**args)
4818
+ end
4819
+ end
4820
+
4821
+ # Response message for ResolveConfigStoreSetting.
4822
+ class ResolveConfigStoreSettingResponse
4823
+ include Google::Apis::Core::Hashable
4824
+
4825
+ # The list of settings that were considered during resolution.
4826
+ # Corresponds to the JSON property `choices`
4827
+ # @return [Array<Google::Apis::DataflowV1b3::ConfigStoreSetting>]
4828
+ attr_accessor :choices
4829
+
4830
+ # A ConfigStoreSetting resource.
4831
+ # Corresponds to the JSON property `setting`
4832
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
4833
+ attr_accessor :setting
4834
+
4835
+ def initialize(**args)
4836
+ update!(**args)
4837
+ end
4838
+
4839
+ # Update properties of this object
4840
+ def update!(**args)
4841
+ @choices = args[:choices] if args.key?(:choices)
4842
+ @setting = args[:setting] if args.key?(:setting)
4843
+ end
4844
+ end
4845
+
4716
4846
  # Worker metrics exported from workers. This contains resource utilization
4717
4847
  # metrics accumulated from a variety of sources. For more information, see go/df-
4718
4848
  # resource-signals.
@@ -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.82.0"
19
+ GEM_VERSION = "0.83.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260807"
25
+ REVISION = "20260825"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,18 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class ConfigStoreSetting
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class ConfigStoreSettingValue
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
127
139
  class ContainerSpec
128
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
141
 
@@ -244,6 +256,12 @@ module Google
244
256
  include Google::Apis::Core::JsonObjectSupport
245
257
  end
246
258
 
259
+ class Empty
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
247
265
  class Environment
248
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
267
 
@@ -496,6 +514,12 @@ module Google
496
514
  include Google::Apis::Core::JsonObjectSupport
497
515
  end
498
516
 
517
+ class ListConfigStoreSettingsResponse
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
499
523
  class ListJobMessagesResponse
500
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
501
525
 
@@ -700,6 +724,18 @@ module Google
700
724
  include Google::Apis::Core::JsonObjectSupport
701
725
  end
702
726
 
727
+ class ResolveConfigStoreSettingRequest
728
+ class Representation < Google::Apis::Core::JsonRepresentation; end
729
+
730
+ include Google::Apis::Core::JsonObjectSupport
731
+ end
732
+
733
+ class ResolveConfigStoreSettingResponse
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
703
739
  class ResourceUtilizationReport
704
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
705
741
 
@@ -1374,6 +1410,23 @@ module Google
1374
1410
  end
1375
1411
  end
1376
1412
 
1413
+ class ConfigStoreSetting
1414
+ # @private
1415
+ class Representation < Google::Apis::Core::JsonRepresentation
1416
+ property :name, as: 'name'
1417
+ property :value, as: 'value', class: Google::Apis::DataflowV1b3::ConfigStoreSettingValue, decorator: Google::Apis::DataflowV1b3::ConfigStoreSettingValue::Representation
1418
+
1419
+ end
1420
+ end
1421
+
1422
+ class ConfigStoreSettingValue
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :bool_value, as: 'boolValue'
1426
+ property :string_value, as: 'stringValue'
1427
+ end
1428
+ end
1429
+
1377
1430
  class ContainerSpec
1378
1431
  # @private
1379
1432
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1612,6 +1665,12 @@ module Google
1612
1665
  end
1613
1666
  end
1614
1667
 
1668
+ class Empty
1669
+ # @private
1670
+ class Representation < Google::Apis::Core::JsonRepresentation
1671
+ end
1672
+ end
1673
+
1615
1674
  class Environment
1616
1675
  # @private
1617
1676
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2091,6 +2150,15 @@ module Google
2091
2150
  end
2092
2151
  end
2093
2152
 
2153
+ class ListConfigStoreSettingsResponse
2154
+ # @private
2155
+ class Representation < Google::Apis::Core::JsonRepresentation
2156
+ collection :config_store_settings, as: 'configStoreSettings', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2157
+
2158
+ property :next_page_token, as: 'nextPageToken'
2159
+ end
2160
+ end
2161
+
2094
2162
  class ListJobMessagesResponse
2095
2163
  # @private
2096
2164
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2460,6 +2528,22 @@ module Google
2460
2528
  end
2461
2529
  end
2462
2530
 
2531
+ class ResolveConfigStoreSettingRequest
2532
+ # @private
2533
+ class Representation < Google::Apis::Core::JsonRepresentation
2534
+ end
2535
+ end
2536
+
2537
+ class ResolveConfigStoreSettingResponse
2538
+ # @private
2539
+ class Representation < Google::Apis::Core::JsonRepresentation
2540
+ collection :choices, as: 'choices', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2541
+
2542
+ property :setting, as: 'setting', class: Google::Apis::DataflowV1b3::ConfigStoreSetting, decorator: Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
2543
+
2544
+ end
2545
+ end
2546
+
2463
2547
  class ResourceUtilizationReport
2464
2548
  # @private
2465
2549
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -51,6 +51,338 @@ module Google
51
51
  @batch_path = 'batch'
52
52
  end
53
53
 
54
+ # Creates a new ConfigStoreSetting.
55
+ # @param [String] parent
56
+ # Required. The parent resource where this setting will be created.
57
+ # @param [Google::Apis::DataflowV1b3::ConfigStoreSetting] config_store_setting_object
58
+ # @param [String] config_store_setting_id
59
+ # Required. The ID to use for the setting.
60
+ # @param [String] fields
61
+ # Selector specifying which fields to include in a partial response.
62
+ # @param [String] quota_user
63
+ # Available to use for quota purposes for server-side applications. Can be any
64
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
65
+ # @param [Google::Apis::RequestOptions] options
66
+ # Request-specific options
67
+ #
68
+ # @yield [result, err] Result & error if block supplied
69
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
70
+ # @yieldparam err [StandardError] error object if request failed
71
+ #
72
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
73
+ #
74
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
75
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
76
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
77
+ def create_folder_location_config_store_setting(parent, config_store_setting_object = nil, config_store_setting_id: nil, fields: nil, quota_user: nil, options: nil, &block)
78
+ command = make_simple_command(:post, 'v1b3/{+parent}/configStoreSettings', options)
79
+ command.request_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
80
+ command.request_object = config_store_setting_object
81
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
82
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
83
+ command.params['parent'] = parent unless parent.nil?
84
+ command.query['configStoreSettingId'] = config_store_setting_id unless config_store_setting_id.nil?
85
+ command.query['fields'] = fields unless fields.nil?
86
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
87
+ execute_or_queue_command(command, &block)
88
+ end
89
+
90
+ # Deletes an existing ConfigStoreSetting.
91
+ # @param [String] name
92
+ # Required. The name of the ConfigStoreSetting to delete.
93
+ # @param [String] fields
94
+ # Selector specifying which fields to include in a partial response.
95
+ # @param [String] quota_user
96
+ # Available to use for quota purposes for server-side applications. Can be any
97
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
98
+ # @param [Google::Apis::RequestOptions] options
99
+ # Request-specific options
100
+ #
101
+ # @yield [result, err] Result & error if block supplied
102
+ # @yieldparam result [Google::Apis::DataflowV1b3::Empty] parsed result object
103
+ # @yieldparam err [StandardError] error object if request failed
104
+ #
105
+ # @return [Google::Apis::DataflowV1b3::Empty]
106
+ #
107
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
108
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
109
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
110
+ def delete_folder_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
111
+ command = make_simple_command(:delete, 'v1b3/{+name}', options)
112
+ command.response_representation = Google::Apis::DataflowV1b3::Empty::Representation
113
+ command.response_class = Google::Apis::DataflowV1b3::Empty
114
+ command.params['name'] = name unless name.nil?
115
+ command.query['fields'] = fields unless fields.nil?
116
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
117
+ execute_or_queue_command(command, &block)
118
+ end
119
+
120
+ # Gets a ConfigStoreSetting.
121
+ # @param [String] name
122
+ # Required. The name of the ConfigStoreSetting to retrieve.
123
+ # @param [String] fields
124
+ # Selector specifying which fields to include in a partial response.
125
+ # @param [String] quota_user
126
+ # Available to use for quota purposes for server-side applications. Can be any
127
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
128
+ # @param [Google::Apis::RequestOptions] options
129
+ # Request-specific options
130
+ #
131
+ # @yield [result, err] Result & error if block supplied
132
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
133
+ # @yieldparam err [StandardError] error object if request failed
134
+ #
135
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
136
+ #
137
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
138
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
139
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
140
+ def get_folder_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
141
+ command = make_simple_command(:get, 'v1b3/{+name}', options)
142
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
143
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
144
+ command.params['name'] = name unless name.nil?
145
+ command.query['fields'] = fields unless fields.nil?
146
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
147
+ execute_or_queue_command(command, &block)
148
+ end
149
+
150
+ # Lists ConfigStoreSettings.
151
+ # @param [String] parent
152
+ # Required. The parent resource whose settings are being listed.
153
+ # @param [Fixnum] page_size
154
+ # Optional. The maximum number of settings to return.
155
+ # @param [String] page_token
156
+ # Optional. A page token, received from a previous `ListConfigStoreSettings`
157
+ # call.
158
+ # @param [String] fields
159
+ # Selector specifying which fields to include in a partial response.
160
+ # @param [String] quota_user
161
+ # Available to use for quota purposes for server-side applications. Can be any
162
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
163
+ # @param [Google::Apis::RequestOptions] options
164
+ # Request-specific options
165
+ #
166
+ # @yield [result, err] Result & error if block supplied
167
+ # @yieldparam result [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse] parsed result object
168
+ # @yieldparam err [StandardError] error object if request failed
169
+ #
170
+ # @return [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse]
171
+ #
172
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
173
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
174
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
175
+ def list_folder_location_config_store_settings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
176
+ command = make_simple_command(:get, 'v1b3/{+parent}/configStoreSettings', options)
177
+ command.response_representation = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse::Representation
178
+ command.response_class = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse
179
+ command.params['parent'] = parent unless parent.nil?
180
+ command.query['pageSize'] = page_size unless page_size.nil?
181
+ command.query['pageToken'] = page_token unless page_token.nil?
182
+ command.query['fields'] = fields unless fields.nil?
183
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
184
+ execute_or_queue_command(command, &block)
185
+ end
186
+
187
+ # Resolves effective value of a ConfigStoreSetting.
188
+ # @param [String] name
189
+ # Required. The name of the setting to resolve.
190
+ # @param [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest] resolve_config_store_setting_request_object
191
+ # @param [String] fields
192
+ # Selector specifying which fields to include in a partial response.
193
+ # @param [String] quota_user
194
+ # Available to use for quota purposes for server-side applications. Can be any
195
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
196
+ # @param [Google::Apis::RequestOptions] options
197
+ # Request-specific options
198
+ #
199
+ # @yield [result, err] Result & error if block supplied
200
+ # @yieldparam result [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse] parsed result object
201
+ # @yieldparam err [StandardError] error object if request failed
202
+ #
203
+ # @return [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse]
204
+ #
205
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
206
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
207
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
208
+ def resolve_folder_location_config_store_setting(name, resolve_config_store_setting_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
209
+ command = make_simple_command(:post, 'v1b3/{+name}:resolve', options)
210
+ command.request_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest::Representation
211
+ command.request_object = resolve_config_store_setting_request_object
212
+ command.response_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse::Representation
213
+ command.response_class = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse
214
+ command.params['name'] = name unless name.nil?
215
+ command.query['fields'] = fields unless fields.nil?
216
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
217
+ execute_or_queue_command(command, &block)
218
+ end
219
+
220
+ # Creates a new ConfigStoreSetting.
221
+ # @param [String] parent
222
+ # Required. The parent resource where this setting will be created.
223
+ # @param [Google::Apis::DataflowV1b3::ConfigStoreSetting] config_store_setting_object
224
+ # @param [String] config_store_setting_id
225
+ # Required. The ID to use for the setting.
226
+ # @param [String] fields
227
+ # Selector specifying which fields to include in a partial response.
228
+ # @param [String] quota_user
229
+ # Available to use for quota purposes for server-side applications. Can be any
230
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
231
+ # @param [Google::Apis::RequestOptions] options
232
+ # Request-specific options
233
+ #
234
+ # @yield [result, err] Result & error if block supplied
235
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
236
+ # @yieldparam err [StandardError] error object if request failed
237
+ #
238
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
239
+ #
240
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
241
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
242
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
243
+ def create_organization_location_config_store_setting(parent, config_store_setting_object = nil, config_store_setting_id: nil, fields: nil, quota_user: nil, options: nil, &block)
244
+ command = make_simple_command(:post, 'v1b3/{+parent}/configStoreSettings', options)
245
+ command.request_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
246
+ command.request_object = config_store_setting_object
247
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
248
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
249
+ command.params['parent'] = parent unless parent.nil?
250
+ command.query['configStoreSettingId'] = config_store_setting_id unless config_store_setting_id.nil?
251
+ command.query['fields'] = fields unless fields.nil?
252
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
253
+ execute_or_queue_command(command, &block)
254
+ end
255
+
256
+ # Deletes an existing ConfigStoreSetting.
257
+ # @param [String] name
258
+ # Required. The name of the ConfigStoreSetting to delete.
259
+ # @param [String] fields
260
+ # Selector specifying which fields to include in a partial response.
261
+ # @param [String] quota_user
262
+ # Available to use for quota purposes for server-side applications. Can be any
263
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
264
+ # @param [Google::Apis::RequestOptions] options
265
+ # Request-specific options
266
+ #
267
+ # @yield [result, err] Result & error if block supplied
268
+ # @yieldparam result [Google::Apis::DataflowV1b3::Empty] parsed result object
269
+ # @yieldparam err [StandardError] error object if request failed
270
+ #
271
+ # @return [Google::Apis::DataflowV1b3::Empty]
272
+ #
273
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
274
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
275
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
276
+ def delete_organization_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
277
+ command = make_simple_command(:delete, 'v1b3/{+name}', options)
278
+ command.response_representation = Google::Apis::DataflowV1b3::Empty::Representation
279
+ command.response_class = Google::Apis::DataflowV1b3::Empty
280
+ command.params['name'] = name unless name.nil?
281
+ command.query['fields'] = fields unless fields.nil?
282
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
283
+ execute_or_queue_command(command, &block)
284
+ end
285
+
286
+ # Gets a ConfigStoreSetting.
287
+ # @param [String] name
288
+ # Required. The name of the ConfigStoreSetting to retrieve.
289
+ # @param [String] fields
290
+ # Selector specifying which fields to include in a partial response.
291
+ # @param [String] quota_user
292
+ # Available to use for quota purposes for server-side applications. Can be any
293
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
294
+ # @param [Google::Apis::RequestOptions] options
295
+ # Request-specific options
296
+ #
297
+ # @yield [result, err] Result & error if block supplied
298
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
299
+ # @yieldparam err [StandardError] error object if request failed
300
+ #
301
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
302
+ #
303
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
304
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
305
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
306
+ def get_organization_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
307
+ command = make_simple_command(:get, 'v1b3/{+name}', options)
308
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
309
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
310
+ command.params['name'] = name unless name.nil?
311
+ command.query['fields'] = fields unless fields.nil?
312
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
313
+ execute_or_queue_command(command, &block)
314
+ end
315
+
316
+ # Lists ConfigStoreSettings.
317
+ # @param [String] parent
318
+ # Required. The parent resource whose settings are being listed.
319
+ # @param [Fixnum] page_size
320
+ # Optional. The maximum number of settings to return.
321
+ # @param [String] page_token
322
+ # Optional. A page token, received from a previous `ListConfigStoreSettings`
323
+ # call.
324
+ # @param [String] fields
325
+ # Selector specifying which fields to include in a partial response.
326
+ # @param [String] quota_user
327
+ # Available to use for quota purposes for server-side applications. Can be any
328
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
329
+ # @param [Google::Apis::RequestOptions] options
330
+ # Request-specific options
331
+ #
332
+ # @yield [result, err] Result & error if block supplied
333
+ # @yieldparam result [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse] parsed result object
334
+ # @yieldparam err [StandardError] error object if request failed
335
+ #
336
+ # @return [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse]
337
+ #
338
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
339
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
340
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
341
+ def list_organization_location_config_store_settings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
342
+ command = make_simple_command(:get, 'v1b3/{+parent}/configStoreSettings', options)
343
+ command.response_representation = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse::Representation
344
+ command.response_class = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse
345
+ command.params['parent'] = parent unless parent.nil?
346
+ command.query['pageSize'] = page_size unless page_size.nil?
347
+ command.query['pageToken'] = page_token unless page_token.nil?
348
+ command.query['fields'] = fields unless fields.nil?
349
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
350
+ execute_or_queue_command(command, &block)
351
+ end
352
+
353
+ # Resolves effective value of a ConfigStoreSetting.
354
+ # @param [String] name
355
+ # Required. The name of the setting to resolve.
356
+ # @param [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest] resolve_config_store_setting_request_object
357
+ # @param [String] fields
358
+ # Selector specifying which fields to include in a partial response.
359
+ # @param [String] quota_user
360
+ # Available to use for quota purposes for server-side applications. Can be any
361
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
362
+ # @param [Google::Apis::RequestOptions] options
363
+ # Request-specific options
364
+ #
365
+ # @yield [result, err] Result & error if block supplied
366
+ # @yieldparam result [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse] parsed result object
367
+ # @yieldparam err [StandardError] error object if request failed
368
+ #
369
+ # @return [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse]
370
+ #
371
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
372
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
373
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
374
+ def resolve_organization_location_config_store_setting(name, resolve_config_store_setting_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
375
+ command = make_simple_command(:post, 'v1b3/{+name}:resolve', options)
376
+ command.request_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest::Representation
377
+ command.request_object = resolve_config_store_setting_request_object
378
+ command.response_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse::Representation
379
+ command.response_class = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse
380
+ command.params['name'] = name unless name.nil?
381
+ command.query['fields'] = fields unless fields.nil?
382
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
383
+ execute_or_queue_command(command, &block)
384
+ end
385
+
54
386
  # Deletes a snapshot.
55
387
  # @param [String] project_id
56
388
  # The ID of the Cloud Platform project that the snapshot belongs to.
@@ -139,6 +471,8 @@ module Google
139
471
  # @param [String] page_token
140
472
  # Set this to the 'next_page_token' field of a previous response to request
141
473
  # additional results in a long list.
474
+ # @param [Boolean] regional_fanout_requested
475
+ # Optional.
142
476
  # @param [String] view
143
477
  # Deprecated. ListJobs always returns summaries now. Use GetJob for other
144
478
  # JobViews.
@@ -159,7 +493,7 @@ module Google
159
493
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
160
494
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
161
495
  # @raise [Google::Apis::AuthorizationError] Authorization is required
162
- 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)
496
+ def aggregated_project_job(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, regional_fanout_requested: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
163
497
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs:aggregated', options)
164
498
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
165
499
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
@@ -169,6 +503,7 @@ module Google
169
503
  command.query['name'] = name unless name.nil?
170
504
  command.query['pageSize'] = page_size unless page_size.nil?
171
505
  command.query['pageToken'] = page_token unless page_token.nil?
506
+ command.query['regionalFanoutRequested'] = regional_fanout_requested unless regional_fanout_requested.nil?
172
507
  command.query['view'] = view unless view.nil?
173
508
  command.query['fields'] = fields unless fields.nil?
174
509
  command.query['quotaUser'] = quota_user unless quota_user.nil?
@@ -341,6 +676,8 @@ module Google
341
676
  # @param [String] page_token
342
677
  # Set this to the 'next_page_token' field of a previous response to request
343
678
  # additional results in a long list.
679
+ # @param [Boolean] regional_fanout_requested
680
+ # Optional.
344
681
  # @param [String] view
345
682
  # Deprecated. ListJobs always returns summaries now. Use GetJob for other
346
683
  # JobViews.
@@ -361,7 +698,7 @@ module Google
361
698
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
362
699
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
363
700
  # @raise [Google::Apis::AuthorizationError] Authorization is required
364
- 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)
701
+ def list_project_jobs(project_id, filter: nil, location: nil, name: nil, page_size: nil, page_token: nil, regional_fanout_requested: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
365
702
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/jobs', options)
366
703
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
367
704
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
@@ -371,6 +708,7 @@ module Google
371
708
  command.query['name'] = name unless name.nil?
372
709
  command.query['pageSize'] = page_size unless page_size.nil?
373
710
  command.query['pageToken'] = page_token unless page_token.nil?
711
+ command.query['regionalFanoutRequested'] = regional_fanout_requested unless regional_fanout_requested.nil?
374
712
  command.query['view'] = view unless view.nil?
375
713
  command.query['fields'] = fields unless fields.nil?
376
714
  command.query['quotaUser'] = quota_user unless quota_user.nil?
@@ -711,6 +1049,172 @@ module Google
711
1049
  execute_or_queue_command(command, &block)
712
1050
  end
713
1051
 
1052
+ # Creates a new ConfigStoreSetting.
1053
+ # @param [String] parent
1054
+ # Required. The parent resource where this setting will be created.
1055
+ # @param [Google::Apis::DataflowV1b3::ConfigStoreSetting] config_store_setting_object
1056
+ # @param [String] config_store_setting_id
1057
+ # Required. The ID to use for the setting.
1058
+ # @param [String] fields
1059
+ # Selector specifying which fields to include in a partial response.
1060
+ # @param [String] quota_user
1061
+ # Available to use for quota purposes for server-side applications. Can be any
1062
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1063
+ # @param [Google::Apis::RequestOptions] options
1064
+ # Request-specific options
1065
+ #
1066
+ # @yield [result, err] Result & error if block supplied
1067
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
1068
+ # @yieldparam err [StandardError] error object if request failed
1069
+ #
1070
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
1071
+ #
1072
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1073
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1074
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1075
+ def create_project_location_config_store_setting(parent, config_store_setting_object = nil, config_store_setting_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1076
+ command = make_simple_command(:post, 'v1b3/{+parent}/configStoreSettings', options)
1077
+ command.request_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
1078
+ command.request_object = config_store_setting_object
1079
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
1080
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
1081
+ command.params['parent'] = parent unless parent.nil?
1082
+ command.query['configStoreSettingId'] = config_store_setting_id unless config_store_setting_id.nil?
1083
+ command.query['fields'] = fields unless fields.nil?
1084
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1085
+ execute_or_queue_command(command, &block)
1086
+ end
1087
+
1088
+ # Deletes an existing ConfigStoreSetting.
1089
+ # @param [String] name
1090
+ # Required. The name of the ConfigStoreSetting to delete.
1091
+ # @param [String] fields
1092
+ # Selector specifying which fields to include in a partial response.
1093
+ # @param [String] quota_user
1094
+ # Available to use for quota purposes for server-side applications. Can be any
1095
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1096
+ # @param [Google::Apis::RequestOptions] options
1097
+ # Request-specific options
1098
+ #
1099
+ # @yield [result, err] Result & error if block supplied
1100
+ # @yieldparam result [Google::Apis::DataflowV1b3::Empty] parsed result object
1101
+ # @yieldparam err [StandardError] error object if request failed
1102
+ #
1103
+ # @return [Google::Apis::DataflowV1b3::Empty]
1104
+ #
1105
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1106
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1107
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1108
+ def delete_project_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
1109
+ command = make_simple_command(:delete, 'v1b3/{+name}', options)
1110
+ command.response_representation = Google::Apis::DataflowV1b3::Empty::Representation
1111
+ command.response_class = Google::Apis::DataflowV1b3::Empty
1112
+ command.params['name'] = name unless name.nil?
1113
+ command.query['fields'] = fields unless fields.nil?
1114
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1115
+ execute_or_queue_command(command, &block)
1116
+ end
1117
+
1118
+ # Gets a ConfigStoreSetting.
1119
+ # @param [String] name
1120
+ # Required. The name of the ConfigStoreSetting to retrieve.
1121
+ # @param [String] fields
1122
+ # Selector specifying which fields to include in a partial response.
1123
+ # @param [String] quota_user
1124
+ # Available to use for quota purposes for server-side applications. Can be any
1125
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1126
+ # @param [Google::Apis::RequestOptions] options
1127
+ # Request-specific options
1128
+ #
1129
+ # @yield [result, err] Result & error if block supplied
1130
+ # @yieldparam result [Google::Apis::DataflowV1b3::ConfigStoreSetting] parsed result object
1131
+ # @yieldparam err [StandardError] error object if request failed
1132
+ #
1133
+ # @return [Google::Apis::DataflowV1b3::ConfigStoreSetting]
1134
+ #
1135
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1136
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1137
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1138
+ def get_project_location_config_store_setting(name, fields: nil, quota_user: nil, options: nil, &block)
1139
+ command = make_simple_command(:get, 'v1b3/{+name}', options)
1140
+ command.response_representation = Google::Apis::DataflowV1b3::ConfigStoreSetting::Representation
1141
+ command.response_class = Google::Apis::DataflowV1b3::ConfigStoreSetting
1142
+ command.params['name'] = name unless name.nil?
1143
+ command.query['fields'] = fields unless fields.nil?
1144
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1145
+ execute_or_queue_command(command, &block)
1146
+ end
1147
+
1148
+ # Lists ConfigStoreSettings.
1149
+ # @param [String] parent
1150
+ # Required. The parent resource whose settings are being listed.
1151
+ # @param [Fixnum] page_size
1152
+ # Optional. The maximum number of settings to return.
1153
+ # @param [String] page_token
1154
+ # Optional. A page token, received from a previous `ListConfigStoreSettings`
1155
+ # call.
1156
+ # @param [String] fields
1157
+ # Selector specifying which fields to include in a partial response.
1158
+ # @param [String] quota_user
1159
+ # Available to use for quota purposes for server-side applications. Can be any
1160
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1161
+ # @param [Google::Apis::RequestOptions] options
1162
+ # Request-specific options
1163
+ #
1164
+ # @yield [result, err] Result & error if block supplied
1165
+ # @yieldparam result [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse] parsed result object
1166
+ # @yieldparam err [StandardError] error object if request failed
1167
+ #
1168
+ # @return [Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse]
1169
+ #
1170
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1171
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1172
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1173
+ def list_project_location_config_store_settings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1174
+ command = make_simple_command(:get, 'v1b3/{+parent}/configStoreSettings', options)
1175
+ command.response_representation = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse::Representation
1176
+ command.response_class = Google::Apis::DataflowV1b3::ListConfigStoreSettingsResponse
1177
+ command.params['parent'] = parent unless parent.nil?
1178
+ command.query['pageSize'] = page_size unless page_size.nil?
1179
+ command.query['pageToken'] = page_token unless page_token.nil?
1180
+ command.query['fields'] = fields unless fields.nil?
1181
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1182
+ execute_or_queue_command(command, &block)
1183
+ end
1184
+
1185
+ # Resolves effective value of a ConfigStoreSetting.
1186
+ # @param [String] name
1187
+ # Required. The name of the setting to resolve.
1188
+ # @param [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest] resolve_config_store_setting_request_object
1189
+ # @param [String] fields
1190
+ # Selector specifying which fields to include in a partial response.
1191
+ # @param [String] quota_user
1192
+ # Available to use for quota purposes for server-side applications. Can be any
1193
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1194
+ # @param [Google::Apis::RequestOptions] options
1195
+ # Request-specific options
1196
+ #
1197
+ # @yield [result, err] Result & error if block supplied
1198
+ # @yieldparam result [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse] parsed result object
1199
+ # @yieldparam err [StandardError] error object if request failed
1200
+ #
1201
+ # @return [Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse]
1202
+ #
1203
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1204
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1205
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1206
+ def resolve_project_location_config_store_setting(name, resolve_config_store_setting_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1207
+ command = make_simple_command(:post, 'v1b3/{+name}:resolve', options)
1208
+ command.request_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingRequest::Representation
1209
+ command.request_object = resolve_config_store_setting_request_object
1210
+ command.response_representation = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse::Representation
1211
+ command.response_class = Google::Apis::DataflowV1b3::ResolveConfigStoreSettingResponse
1212
+ command.params['name'] = name unless name.nil?
1213
+ command.query['fields'] = fields unless fields.nil?
1214
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1215
+ execute_or_queue_command(command, &block)
1216
+ end
1217
+
714
1218
  # Launch a job with a FlexTemplate. # IAM Permissions Requires the following IAM
715
1219
  # permission(s) on the resource: - `dataflow.jobs.create` - `resourcemanager.
716
1220
  # projects.get` - `iam.serviceAccounts.actAs` - `storage.buckets.get` - `storage.
@@ -966,6 +1470,8 @@ module Google
966
1470
  # @param [String] page_token
967
1471
  # Set this to the 'next_page_token' field of a previous response to request
968
1472
  # additional results in a long list.
1473
+ # @param [Boolean] regional_fanout_requested
1474
+ # Optional.
969
1475
  # @param [String] view
970
1476
  # Deprecated. ListJobs always returns summaries now. Use GetJob for other
971
1477
  # JobViews.
@@ -986,7 +1492,7 @@ module Google
986
1492
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
987
1493
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
988
1494
  # @raise [Google::Apis::AuthorizationError] Authorization is required
989
- 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)
1495
+ def list_project_location_jobs(project_id, location, filter: nil, name: nil, page_size: nil, page_token: nil, regional_fanout_requested: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
990
1496
  command = make_simple_command(:get, 'v1b3/projects/{projectId}/locations/{location}/jobs', options)
991
1497
  command.response_representation = Google::Apis::DataflowV1b3::ListJobsResponse::Representation
992
1498
  command.response_class = Google::Apis::DataflowV1b3::ListJobsResponse
@@ -996,6 +1502,7 @@ module Google
996
1502
  command.query['name'] = name unless name.nil?
997
1503
  command.query['pageSize'] = page_size unless page_size.nil?
998
1504
  command.query['pageToken'] = page_token unless page_token.nil?
1505
+ command.query['regionalFanoutRequested'] = regional_fanout_requested unless regional_fanout_requested.nil?
999
1506
  command.query['view'] = view unless view.nil?
1000
1507
  command.query['fields'] = fields unless fields.nil?
1001
1508
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.82.0
4
+ version: 0.83.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.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.83.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: