google-apis-dataflow_v1b3 0.40.0 → 0.41.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: 523e3ec09eb073fdfd6f2f854c681ea3f91581879beb79c2e151ee4823f97f3a
4
- data.tar.gz: e08d0cf6a059df682cbd6ff45a62f0f16db1f13945944540684304013d2f3f85
3
+ metadata.gz: f86067976f4320c134bb565f1e94c97d94d2c9aadcfb8388ae36c5a6d4d1e4b7
4
+ data.tar.gz: 495a676de103909f4108079414ce542e66f4c439aa5206c98e2a042de0e86ac2
5
5
  SHA512:
6
- metadata.gz: d87a09c54a4bbfaf1f324cdd32eb7472bebf7e0cb6ee605554f607adcd633e7eae3b333f7c8f236ec59abce35cc6543c69bcef1e5201c71065f1bab73e0e518b
7
- data.tar.gz: 3c2a85a1ebabfe9e8a73f615aae97fe9eedb46874ee6fcc91c495afdb22a47b0e4036808fe877682cf2fc0e6fd2d7726bc3e47080b7fd5fdd7f220e1fe047408
6
+ metadata.gz: 780498f4417f3ad8028bd2776162aa11ac589d27e3aa5f10c695cfda447bd1e32aa08c60f286315817318ec6d067ddf87dda435fcc7293ce66b2a83b272e5ac2
7
+ data.tar.gz: c1ec104a94ba227af40642ff5a581027c9f602d3c298988004723ebc9de6efd84b6ab2108a0845d1a755afc21a1cb9fd160cd41ee2a6970552dca7f1086a927d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.41.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230619
6
+
3
7
  ### v0.40.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230529
@@ -3404,6 +3404,11 @@ module Google
3404
3404
  # @return [Hash<String,String>]
3405
3405
  attr_accessor :custom_metadata
3406
3406
 
3407
+ # Optional. The options shown when ENUM ParameterType is specified.
3408
+ # Corresponds to the JSON property `enumOptions`
3409
+ # @return [Array<Google::Apis::DataflowV1b3::ParameterMetadataEnumOption>]
3410
+ attr_accessor :enum_options
3411
+
3407
3412
  # Optional. Specifies a group name for this parameter to be rendered under.
3408
3413
  # Group header text will be rendered exactly as specified in this field. Only
3409
3414
  # considered when parent_name is NOT provided.
@@ -3464,6 +3469,7 @@ module Google
3464
3469
  # Update properties of this object
3465
3470
  def update!(**args)
3466
3471
  @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
3472
+ @enum_options = args[:enum_options] if args.key?(:enum_options)
3467
3473
  @group_name = args[:group_name] if args.key?(:group_name)
3468
3474
  @help_text = args[:help_text] if args.key?(:help_text)
3469
3475
  @is_optional = args[:is_optional] if args.key?(:is_optional)
@@ -3476,6 +3482,37 @@ module Google
3476
3482
  end
3477
3483
  end
3478
3484
 
3485
+ # ParameterMetadataEnumOption specifies the option shown in the enum form.
3486
+ class ParameterMetadataEnumOption
3487
+ include Google::Apis::Core::Hashable
3488
+
3489
+ # Optional. The description to display for the enum option.
3490
+ # Corresponds to the JSON property `description`
3491
+ # @return [String]
3492
+ attr_accessor :description
3493
+
3494
+ # Optional. The label to display for the enum option.
3495
+ # Corresponds to the JSON property `label`
3496
+ # @return [String]
3497
+ attr_accessor :label
3498
+
3499
+ # Required. The value of the enum option.
3500
+ # Corresponds to the JSON property `value`
3501
+ # @return [String]
3502
+ attr_accessor :value
3503
+
3504
+ def initialize(**args)
3505
+ update!(**args)
3506
+ end
3507
+
3508
+ # Update properties of this object
3509
+ def update!(**args)
3510
+ @description = args[:description] if args.key?(:description)
3511
+ @label = args[:label] if args.key?(:label)
3512
+ @value = args[:value] if args.key?(:value)
3513
+ end
3514
+ end
3515
+
3479
3516
  # An instruction that does a partial group-by-key. One input and one output.
3480
3517
  class PartialGroupByKeyInstruction
3481
3518
  include Google::Apis::Core::Hashable
@@ -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.40.0"
19
+ GEM_VERSION = "0.41.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 = "20230529"
25
+ REVISION = "20230619"
26
26
  end
27
27
  end
28
28
  end
@@ -508,6 +508,12 @@ module Google
508
508
  include Google::Apis::Core::JsonObjectSupport
509
509
  end
510
510
 
511
+ class ParameterMetadataEnumOption
512
+ class Representation < Google::Apis::Core::JsonRepresentation; end
513
+
514
+ include Google::Apis::Core::JsonObjectSupport
515
+ end
516
+
511
517
  class PartialGroupByKeyInstruction
512
518
  class Representation < Google::Apis::Core::JsonRepresentation; end
513
519
 
@@ -1947,6 +1953,8 @@ module Google
1947
1953
  # @private
1948
1954
  class Representation < Google::Apis::Core::JsonRepresentation
1949
1955
  hash :custom_metadata, as: 'customMetadata'
1956
+ collection :enum_options, as: 'enumOptions', class: Google::Apis::DataflowV1b3::ParameterMetadataEnumOption, decorator: Google::Apis::DataflowV1b3::ParameterMetadataEnumOption::Representation
1957
+
1950
1958
  property :group_name, as: 'groupName'
1951
1959
  property :help_text, as: 'helpText'
1952
1960
  property :is_optional, as: 'isOptional'
@@ -1959,6 +1967,15 @@ module Google
1959
1967
  end
1960
1968
  end
1961
1969
 
1970
+ class ParameterMetadataEnumOption
1971
+ # @private
1972
+ class Representation < Google::Apis::Core::JsonRepresentation
1973
+ property :description, as: 'description'
1974
+ property :label, as: 'label'
1975
+ property :value, as: 'value'
1976
+ end
1977
+ end
1978
+
1962
1979
  class PartialGroupByKeyInstruction
1963
1980
  # @private
1964
1981
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -422,8 +422,8 @@ module Google
422
422
  # will be considered for update. If the FieldMask is not empty and
423
423
  # RequestedJobState is none/empty, The fields specified in the update mask will
424
424
  # be the only ones considered for update. If both RequestedJobState and
425
- # update_mask are specified, we will first handle RequestedJobState and then the
426
- # update_mask fields.
425
+ # update_mask are specified, an error will be returned as we cannot update both
426
+ # state and mask.
427
427
  # @param [String] fields
428
428
  # Selector specifying which fields to include in a partial response.
429
429
  # @param [String] quota_user
@@ -1036,8 +1036,8 @@ module Google
1036
1036
  # will be considered for update. If the FieldMask is not empty and
1037
1037
  # RequestedJobState is none/empty, The fields specified in the update mask will
1038
1038
  # be the only ones considered for update. If both RequestedJobState and
1039
- # update_mask are specified, we will first handle RequestedJobState and then the
1040
- # update_mask fields.
1039
+ # update_mask are specified, an error will be returned as we cannot update both
1040
+ # state and mask.
1041
1041
  # @param [String] fields
1042
1042
  # Selector specifying which fields to include in a partial response.
1043
1043
  # @param [String] quota_user
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.40.0
4
+ version: 0.41.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-06-11 00:00:00.000000000 Z
11
+ date: 2023-06-25 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.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.41.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: []