google-apis-dataflow_v1b3 0.36.0 → 0.37.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: c988dff29537c07f1408264f20dbf3340e328b3e47ec22e439b979a4628a5b5f
4
- data.tar.gz: f2830bfdf97e6fb55d7f72b26c497a91261f0b9f949bfbf6dbc48ee612590835
3
+ metadata.gz: 5fb1492c6015015f2508dc2f12b36cc27d90675bd0f77ef96b381dd49f48a88e
4
+ data.tar.gz: '07852ed7930589d1e66b911c2a46091a62ff1e7df77966d2b5666e420c1297fd'
5
5
  SHA512:
6
- metadata.gz: 6729dc017a64cbdc760c98c3aa70011a9f862168fe1d59e4bd92cec56c1592332c35d415343d8471cec68128b4b1d387d7262256a7143c5a7c9152d7cb5008aa
7
- data.tar.gz: 63afd17c5682db904e40c350bf3af5e781a588b33909ff2050895ab2f1d91167cdf95f1e7735e2a215f19d60adf3dd488b4fa47f4b457126e50fc372a14f0679
6
+ metadata.gz: 753bfbf0c46febb0fd532264af9ea3fdf4817bfed84d6c7bdb86b443d7243c403d285e6d2e8cc5c51afb51f2f6bad9b75557cae342dc6330012efa93ac012041
7
+ data.tar.gz: 9a5a044e4619c6c46c3d96d787dae5ecea080ffac301162dcc071eb85c2cdfcbba6b93741e62621aa74d264124c87be394d3d007b36d95862ad4958f728b286f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.37.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230313
6
+
3
7
  ### v0.36.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -2422,6 +2422,11 @@ module Google
2422
2422
  # @return [Array<Google::Apis::DataflowV1b3::SpannerIoDetails>]
2423
2423
  attr_accessor :spanner_details
2424
2424
 
2425
+ # List of display properties to help UI filter jobs.
2426
+ # Corresponds to the JSON property `userDisplayProperties`
2427
+ # @return [Hash<String,String>]
2428
+ attr_accessor :user_display_properties
2429
+
2425
2430
  def initialize(**args)
2426
2431
  update!(**args)
2427
2432
  end
@@ -2435,6 +2440,7 @@ module Google
2435
2440
  @pubsub_details = args[:pubsub_details] if args.key?(:pubsub_details)
2436
2441
  @sdk_version = args[:sdk_version] if args.key?(:sdk_version)
2437
2442
  @spanner_details = args[:spanner_details] if args.key?(:spanner_details)
2443
+ @user_display_properties = args[:user_display_properties] if args.key?(:user_display_properties)
2438
2444
  end
2439
2445
  end
2440
2446
 
@@ -3390,6 +3396,13 @@ module Google
3390
3396
  # @return [Hash<String,String>]
3391
3397
  attr_accessor :custom_metadata
3392
3398
 
3399
+ # Optional. Specifies a group name for this parameter to be rendered under.
3400
+ # Group header text will be rendered exactly as specified in this field. Only
3401
+ # considered when parent_name is NOT provided.
3402
+ # Corresponds to the JSON property `groupName`
3403
+ # @return [String]
3404
+ attr_accessor :group_name
3405
+
3393
3406
  # Required. The help text to display for the parameter.
3394
3407
  # Corresponds to the JSON property `helpText`
3395
3408
  # @return [String]
@@ -3416,6 +3429,21 @@ module Google
3416
3429
  # @return [String]
3417
3430
  attr_accessor :param_type
3418
3431
 
3432
+ # Optional. Specifies the name of the parent parameter. Used in conjunction with
3433
+ # 'parent_trigger_values' to make this parameter conditional (will only be
3434
+ # rendered conditionally). Should be mappable to a ParameterMetadata.name field.
3435
+ # Corresponds to the JSON property `parentName`
3436
+ # @return [String]
3437
+ attr_accessor :parent_name
3438
+
3439
+ # Optional. The value(s) of the 'parent_name' parameter which will trigger this
3440
+ # parameter to be shown. If left empty, ANY non-empty value in parent_name will
3441
+ # trigger this parameter to be shown. Only considered when this parameter is
3442
+ # conditional (when 'parent_name' has been provided).
3443
+ # Corresponds to the JSON property `parentTriggerValues`
3444
+ # @return [Array<String>]
3445
+ attr_accessor :parent_trigger_values
3446
+
3419
3447
  # Optional. Regexes that the parameter must match.
3420
3448
  # Corresponds to the JSON property `regexes`
3421
3449
  # @return [Array<String>]
@@ -3428,11 +3456,14 @@ module Google
3428
3456
  # Update properties of this object
3429
3457
  def update!(**args)
3430
3458
  @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
3459
+ @group_name = args[:group_name] if args.key?(:group_name)
3431
3460
  @help_text = args[:help_text] if args.key?(:help_text)
3432
3461
  @is_optional = args[:is_optional] if args.key?(:is_optional)
3433
3462
  @label = args[:label] if args.key?(:label)
3434
3463
  @name = args[:name] if args.key?(:name)
3435
3464
  @param_type = args[:param_type] if args.key?(:param_type)
3465
+ @parent_name = args[:parent_name] if args.key?(:parent_name)
3466
+ @parent_trigger_values = args[:parent_trigger_values] if args.key?(:parent_trigger_values)
3436
3467
  @regexes = args[:regexes] if args.key?(:regexes)
3437
3468
  end
3438
3469
  end
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230119"
25
+ REVISION = "20230313"
26
26
  end
27
27
  end
28
28
  end
@@ -1667,6 +1667,7 @@ module Google
1667
1667
 
1668
1668
  collection :spanner_details, as: 'spannerDetails', class: Google::Apis::DataflowV1b3::SpannerIoDetails, decorator: Google::Apis::DataflowV1b3::SpannerIoDetails::Representation
1669
1669
 
1670
+ hash :user_display_properties, as: 'userDisplayProperties'
1670
1671
  end
1671
1672
  end
1672
1673
 
@@ -1938,11 +1939,14 @@ module Google
1938
1939
  # @private
1939
1940
  class Representation < Google::Apis::Core::JsonRepresentation
1940
1941
  hash :custom_metadata, as: 'customMetadata'
1942
+ property :group_name, as: 'groupName'
1941
1943
  property :help_text, as: 'helpText'
1942
1944
  property :is_optional, as: 'isOptional'
1943
1945
  property :label, as: 'label'
1944
1946
  property :name, as: 'name'
1945
1947
  property :param_type, as: 'paramType'
1948
+ property :parent_name, as: 'parentName'
1949
+ collection :parent_trigger_values, as: 'parentTriggerValues'
1946
1950
  collection :regexes, as: 'regexes'
1947
1951
  end
1948
1952
  end
@@ -414,6 +414,13 @@ module Google
414
414
  # @param [String] location
415
415
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
416
416
  # regional-endpoints) that contains this job.
417
+ # @param [String] update_mask
418
+ # The list of fields to update relative to Job. If empty, only RequestedJobState
419
+ # will be considered for update. If the FieldMask is not empty and
420
+ # RequestedJobState is none/empty, The fields specified in the update mask will
421
+ # be the only ones considered for update. If both RequestedJobState and
422
+ # update_mask are specified, we will first handle RequestedJobState and then the
423
+ # update_mask fields.
417
424
  # @param [String] fields
418
425
  # Selector specifying which fields to include in a partial response.
419
426
  # @param [String] quota_user
@@ -431,7 +438,7 @@ module Google
431
438
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
432
439
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
433
440
  # @raise [Google::Apis::AuthorizationError] Authorization is required
434
- def update_project_job(project_id, job_id, job_object = nil, location: nil, fields: nil, quota_user: nil, options: nil, &block)
441
+ def update_project_job(project_id, job_id, job_object = nil, location: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
435
442
  command = make_simple_command(:put, 'v1b3/projects/{projectId}/jobs/{jobId}', options)
436
443
  command.request_representation = Google::Apis::DataflowV1b3::Job::Representation
437
444
  command.request_object = job_object
@@ -440,6 +447,7 @@ module Google
440
447
  command.params['projectId'] = project_id unless project_id.nil?
441
448
  command.params['jobId'] = job_id unless job_id.nil?
442
449
  command.query['location'] = location unless location.nil?
450
+ command.query['updateMask'] = update_mask unless update_mask.nil?
443
451
  command.query['fields'] = fields unless fields.nil?
444
452
  command.query['quotaUser'] = quota_user unless quota_user.nil?
445
453
  execute_or_queue_command(command, &block)
@@ -1018,6 +1026,13 @@ module Google
1018
1026
  # @param [String] job_id
1019
1027
  # The job ID.
1020
1028
  # @param [Google::Apis::DataflowV1b3::Job] job_object
1029
+ # @param [String] update_mask
1030
+ # The list of fields to update relative to Job. If empty, only RequestedJobState
1031
+ # will be considered for update. If the FieldMask is not empty and
1032
+ # RequestedJobState is none/empty, The fields specified in the update mask will
1033
+ # be the only ones considered for update. If both RequestedJobState and
1034
+ # update_mask are specified, we will first handle RequestedJobState and then the
1035
+ # update_mask fields.
1021
1036
  # @param [String] fields
1022
1037
  # Selector specifying which fields to include in a partial response.
1023
1038
  # @param [String] quota_user
@@ -1035,7 +1050,7 @@ module Google
1035
1050
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1036
1051
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1037
1052
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1038
- def update_project_location_job(project_id, location, job_id, job_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1053
+ def update_project_location_job(project_id, location, job_id, job_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1039
1054
  command = make_simple_command(:put, 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}', options)
1040
1055
  command.request_representation = Google::Apis::DataflowV1b3::Job::Representation
1041
1056
  command.request_object = job_object
@@ -1044,6 +1059,7 @@ module Google
1044
1059
  command.params['projectId'] = project_id unless project_id.nil?
1045
1060
  command.params['location'] = location unless location.nil?
1046
1061
  command.params['jobId'] = job_id unless job_id.nil?
1062
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1047
1063
  command.query['fields'] = fields unless fields.nil?
1048
1064
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1049
1065
  execute_or_queue_command(command, &block)
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.36.0
4
+ version: 0.37.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-19 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.37.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: []