google-apis-dataflow_v1b3 0.40.0 → 0.42.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: 523e3ec09eb073fdfd6f2f854c681ea3f91581879beb79c2e151ee4823f97f3a
4
- data.tar.gz: e08d0cf6a059df682cbd6ff45a62f0f16db1f13945944540684304013d2f3f85
3
+ metadata.gz: dc4e10608d38b0be729cf8e9a67ed19fdb9de04d4f5411b59e060d9c5c8551a7
4
+ data.tar.gz: c78d35ae9228b8705494d51b47b6de08102a17a42a854d7987e491526e7edb6c
5
5
  SHA512:
6
- metadata.gz: d87a09c54a4bbfaf1f324cdd32eb7472bebf7e0cb6ee605554f607adcd633e7eae3b333f7c8f236ec59abce35cc6543c69bcef1e5201c71065f1bab73e0e518b
7
- data.tar.gz: 3c2a85a1ebabfe9e8a73f615aae97fe9eedb46874ee6fcc91c495afdb22a47b0e4036808fe877682cf2fc0e6fd2d7726bc3e47080b7fd5fdd7f220e1fe047408
6
+ metadata.gz: 6e99413f287e6913e1e4fea0791fa3ec81cad71221c938a2f6b4b3df9a977970ee4660365f422abbbdcd15e84675d8255dd2802515881a6aa5e3c9117e40f144
7
+ data.tar.gz: 5a9160059b2ad4376afe63be1c93c5186872b397e420e8839760c0be46385de668a34ed3f3f6409c0fad99cde06e23340e71320d52e35b60172dbbd1fd7f23bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.42.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230703
6
+
7
+ ### v0.41.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230619
10
+
3
11
  ### v0.40.0 (2023-06-11)
4
12
 
5
13
  * 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
@@ -3993,6 +4030,12 @@ module Google
3993
4030
  attr_accessor :bypass_temp_dir_validation
3994
4031
  alias_method :bypass_temp_dir_validation?, :bypass_temp_dir_validation
3995
4032
 
4033
+ # Optional. The disk size, in gigabytes, to use on each remote Compute Engine
4034
+ # worker instance.
4035
+ # Corresponds to the JSON property `diskSizeGb`
4036
+ # @return [Fixnum]
4037
+ attr_accessor :disk_size_gb
4038
+
3996
4039
  # Optional. Whether to enable Streaming Engine for the job.
3997
4040
  # Corresponds to the JSON property `enableStreamingEngine`
3998
4041
  # @return [Boolean]
@@ -4090,6 +4133,7 @@ module Google
4090
4133
  @additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
4091
4134
  @additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
4092
4135
  @bypass_temp_dir_validation = args[:bypass_temp_dir_validation] if args.key?(:bypass_temp_dir_validation)
4136
+ @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4093
4137
  @enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
4094
4138
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
4095
4139
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
@@ -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.42.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 = "20230703"
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
@@ -2108,6 +2125,7 @@ module Google
2108
2125
  collection :additional_experiments, as: 'additionalExperiments'
2109
2126
  hash :additional_user_labels, as: 'additionalUserLabels'
2110
2127
  property :bypass_temp_dir_validation, as: 'bypassTempDirValidation'
2128
+ property :disk_size_gb, as: 'diskSizeGb'
2111
2129
  property :enable_streaming_engine, as: 'enableStreamingEngine'
2112
2130
  property :ip_configuration, as: 'ipConfiguration'
2113
2131
  property :kms_key_name, as: 'kmsKeyName'
@@ -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.42.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-07-16 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.42.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: []