google-apis-dataflow_v1b3 0.39.0 → 0.41.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: 473781066bbbbf6cbddb631d7935c149b379304860df5df47ac90bbe7be814a0
4
- data.tar.gz: 320d93db5a232817d394367b58873d87d8de8fb0e083e0b96b78d47aecf07c5e
3
+ metadata.gz: f86067976f4320c134bb565f1e94c97d94d2c9aadcfb8388ae36c5a6d4d1e4b7
4
+ data.tar.gz: 495a676de103909f4108079414ce542e66f4c439aa5206c98e2a042de0e86ac2
5
5
  SHA512:
6
- metadata.gz: d134b630001b3ce0fe7b48c436bad287c9eb719180c42e472de148ea32d84a7e75d7333a82b59bdbdcea9b7dc836db3101736058bfb0ae36132bd51cd1df5c39
7
- data.tar.gz: 79470a9c22854517668445de4417e4f057feac90db5977eb4ac1f49cb4f52f4b7678c93ab18f88f185c962ba9bbfe90bb1d88a64ba2f3548f29999e4ad8ffac3
6
+ metadata.gz: 780498f4417f3ad8028bd2776162aa11ac589d27e3aa5f10c695cfda447bd1e32aa08c60f286315817318ec6d067ddf87dda435fcc7293ce66b2a83b272e5ac2
7
+ data.tar.gz: c1ec104a94ba227af40642ff5a581027c9f602d3c298988004723ebc9de6efd84b6ab2108a0845d1a755afc21a1cb9fd160cd41ee2a6970552dca7f1086a927d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.40.0 (2023-06-11)
8
+
9
+ * Regenerated from discovery document revision 20230529
10
+
3
11
  ### v0.39.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230514
@@ -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.39.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 = "20230514"
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
@@ -118,7 +118,8 @@ module Google
118
118
  execute_or_queue_command(command, &block)
119
119
  end
120
120
 
121
- # List the jobs of a project across all regions.
121
+ # List the jobs of a project across all regions. **Note:** This method doesn't
122
+ # support filtering the list of jobs by name.
122
123
  # @param [String] project_id
123
124
  # The project which owns the jobs.
124
125
  # @param [String] filter
@@ -127,7 +128,7 @@ module Google
127
128
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
128
129
  # regional-endpoints) that contains this job.
129
130
  # @param [String] name
130
- # Optional. The job name. Optional.
131
+ # Optional. The job name.
131
132
  # @param [Fixnum] page_size
132
133
  # If there are many jobs, limit response to at most this many. The actual number
133
134
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -311,8 +312,10 @@ module Google
311
312
  # recommend using `projects.locations.jobs.list` with a [regional endpoint] (
312
313
  # https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list
313
314
  # the all jobs across all regions, use `projects.jobs.aggregated`. Using `
314
- # projects.jobs.list` is not recommended, as you can only get the list of jobs
315
- # that are running in `us-central1`.
315
+ # projects.jobs.list` is not recommended, because you can only get the list of
316
+ # jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
317
+ # projects.jobs.list` support filtering the list of jobs by name. Filtering by
318
+ # name isn't supported by `projects.jobs.aggregated`.
316
319
  # @param [String] project_id
317
320
  # The project which owns the jobs.
318
321
  # @param [String] filter
@@ -321,7 +324,7 @@ module Google
321
324
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
322
325
  # regional-endpoints) that contains this job.
323
326
  # @param [String] name
324
- # Optional. The job name. Optional.
327
+ # Optional. The job name.
325
328
  # @param [Fixnum] page_size
326
329
  # If there are many jobs, limit response to at most this many. The actual number
327
330
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -419,8 +422,8 @@ module Google
419
422
  # will be considered for update. If the FieldMask is not empty and
420
423
  # RequestedJobState is none/empty, The fields specified in the update mask will
421
424
  # 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.
425
+ # update_mask are specified, an error will be returned as we cannot update both
426
+ # state and mask.
424
427
  # @param [String] fields
425
428
  # Selector specifying which fields to include in a partial response.
426
429
  # @param [String] quota_user
@@ -920,8 +923,10 @@ module Google
920
923
  # recommend using `projects.locations.jobs.list` with a [regional endpoint] (
921
924
  # https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list
922
925
  # the all jobs across all regions, use `projects.jobs.aggregated`. Using `
923
- # projects.jobs.list` is not recommended, as you can only get the list of jobs
924
- # that are running in `us-central1`.
926
+ # projects.jobs.list` is not recommended, because you can only get the list of
927
+ # jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
928
+ # projects.jobs.list` support filtering the list of jobs by name. Filtering by
929
+ # name isn't supported by `projects.jobs.aggregated`.
925
930
  # @param [String] project_id
926
931
  # The project which owns the jobs.
927
932
  # @param [String] location
@@ -930,7 +935,7 @@ module Google
930
935
  # @param [String] filter
931
936
  # The kind of filter to use.
932
937
  # @param [String] name
933
- # Optional. The job name. Optional.
938
+ # Optional. The job name.
934
939
  # @param [Fixnum] page_size
935
940
  # If there are many jobs, limit response to at most this many. The actual number
936
941
  # of jobs returned will be the lesser of max_responses and an unspecified server-
@@ -1031,8 +1036,8 @@ module Google
1031
1036
  # will be considered for update. If the FieldMask is not empty and
1032
1037
  # RequestedJobState is none/empty, The fields specified in the update mask will
1033
1038
  # 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.
1039
+ # update_mask are specified, an error will be returned as we cannot update both
1040
+ # state and mask.
1036
1041
  # @param [String] fields
1037
1042
  # Selector specifying which fields to include in a partial response.
1038
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.39.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-05-21 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.39.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: []