google-apis-dataflow_v1b3 0.52.0 → 0.54.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: ea6b789d337b616c8c044aa59acd51b753a1d557d90ac3945449f094f64342c8
4
- data.tar.gz: 8c8c71e00c21e623a921f270a7cca4eb4dcad636e5684c0c9e044302acfbac33
3
+ metadata.gz: 7ed544682b180ce37a8ef12027aec7da86c2d984db50b5919fdd5cdb63bdbd49
4
+ data.tar.gz: 3f82d992ead99d792ded79300aa24ba1555c97515c4ae04a8a4e0753d62667e8
5
5
  SHA512:
6
- metadata.gz: 3055b5b2fec68e710e647361407bc0683300dfd7dbb8e564f9fd6658ea6437fc242ae690f22023ea1dd9fdd67e4d7d4b62647ed12d7aa799f11afde5b291a935
7
- data.tar.gz: 01472ce0dae198b81fcea461df88d120568da30f5a361a2ffcc1e2fb993e28b143d5ef79b868f1d85e874b41622ba2aa4a4f559aba75fb238677ea7d6ba7a0e2
6
+ metadata.gz: 580b857d04a0477153cf35c9729105a310325aff48a12e33bc01df9aeec834ceef175c96b9f5e0328799140eac5b44f17998193c396818f737e95d56f4764765
7
+ data.tar.gz: a470f4ad7e862b09aed2b55b89249ff397c9a8241a989af1ce5c294e43d5cc5db9eabc0c06bb4549a43b9a0309df2957b57636230b1acee40f2ea8f90dcf704b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.54.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240415
6
+
7
+ ### v0.53.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240317
10
+
3
11
  ### v0.52.0 (2024-03-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20240310
@@ -824,7 +824,7 @@ module Google
824
824
  class CreateJobFromTemplateRequest
825
825
  include Google::Apis::Core::Hashable
826
826
 
827
- # The environment values to set at runtime.
827
+ # The environment values to set at runtime. LINT.IfChange
828
828
  # Corresponds to the JSON property `environment`
829
829
  # @return [Google::Apis::DataflowV1b3::RuntimeEnvironment]
830
830
  attr_accessor :environment
@@ -2914,7 +2914,7 @@ module Google
2914
2914
  class LaunchTemplateParameters
2915
2915
  include Google::Apis::Core::Hashable
2916
2916
 
2917
- # The environment values to set at runtime.
2917
+ # The environment values to set at runtime. LINT.IfChange
2918
2918
  # Corresponds to the JSON property `environment`
2919
2919
  # @return [Google::Apis::DataflowV1b3::RuntimeEnvironment]
2920
2920
  attr_accessor :environment
@@ -4411,7 +4411,7 @@ module Google
4411
4411
  end
4412
4412
  end
4413
4413
 
4414
- # The environment values to set at runtime.
4414
+ # The environment values to set at runtime. LINT.IfChange
4415
4415
  class RuntimeEnvironment
4416
4416
  include Google::Apis::Core::Hashable
4417
4417
 
@@ -6568,6 +6568,13 @@ module Google
6568
6568
  class TemplateMetadata
6569
6569
  include Google::Apis::Core::Hashable
6570
6570
 
6571
+ # Optional. Indicates the default streaming mode for a streaming template. Only
6572
+ # valid if both supports_at_least_once and supports_exactly_once are true.
6573
+ # Possible values: UNSPECIFIED, EXACTLY_ONCE and AT_LEAST_ONCE
6574
+ # Corresponds to the JSON property `defaultStreamingMode`
6575
+ # @return [String]
6576
+ attr_accessor :default_streaming_mode
6577
+
6571
6578
  # Optional. A description of the template.
6572
6579
  # Corresponds to the JSON property `description`
6573
6580
  # @return [String]
@@ -6607,6 +6614,7 @@ module Google
6607
6614
 
6608
6615
  # Update properties of this object
6609
6616
  def update!(**args)
6617
+ @default_streaming_mode = args[:default_streaming_mode] if args.key?(:default_streaming_mode)
6610
6618
  @description = args[:description] if args.key?(:description)
6611
6619
  @name = args[:name] if args.key?(:name)
6612
6620
  @parameters = args[:parameters] if args.key?(:parameters)
@@ -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.52.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240310"
25
+ REVISION = "20240415"
26
26
  end
27
27
  end
28
28
  end
@@ -2897,6 +2897,7 @@ module Google
2897
2897
  class TemplateMetadata
2898
2898
  # @private
2899
2899
  class Representation < Google::Apis::Core::JsonRepresentation
2900
+ property :default_streaming_mode, as: 'defaultStreamingMode'
2900
2901
  property :description, as: 'description'
2901
2902
  property :name, as: 'name'
2902
2903
  collection :parameters, as: 'parameters', class: Google::Apis::DataflowV1b3::ParameterMetadata, decorator: Google::Apis::DataflowV1b3::ParameterMetadata::Representation
@@ -1580,14 +1580,14 @@ module Google
1580
1580
  # regional-endpoints) to which to direct the request.
1581
1581
  # @param [Google::Apis::DataflowV1b3::LaunchTemplateParameters] launch_template_parameters_object
1582
1582
  # @param [String] dynamic_template_gcs_path
1583
- # Path to dynamic template spec file on Cloud Storage. The file must be a Json
1584
- # serialized DynamicTemplateFieSpec object.
1583
+ # Path to the dynamic template specification file on Cloud Storage. The file
1584
+ # must be a JSON serialized `DynamicTemplateFileSpec` object.
1585
1585
  # @param [String] dynamic_template_staging_location
1586
1586
  # Cloud Storage path for staging dependencies. Must be a valid Cloud Storage URL,
1587
1587
  # beginning with `gs://`.
1588
1588
  # @param [String] gcs_path
1589
- # A Cloud Storage path to the template from which to create the job. Must be
1590
- # valid Cloud Storage URL, beginning with 'gs://'.
1589
+ # A Cloud Storage path to the template to use to create the job. Must be valid
1590
+ # Cloud Storage URL, beginning with `gs://`.
1591
1591
  # @param [Boolean] validate_only
1592
1592
  # If true, the request is validated but not actually executed. Defaults to false.
1593
1593
  # @param [String] fields
@@ -1776,14 +1776,14 @@ module Google
1776
1776
  # Required. The ID of the Cloud Platform project that the job belongs to.
1777
1777
  # @param [Google::Apis::DataflowV1b3::LaunchTemplateParameters] launch_template_parameters_object
1778
1778
  # @param [String] dynamic_template_gcs_path
1779
- # Path to dynamic template spec file on Cloud Storage. The file must be a Json
1780
- # serialized DynamicTemplateFieSpec object.
1779
+ # Path to the dynamic template specification file on Cloud Storage. The file
1780
+ # must be a JSON serialized `DynamicTemplateFileSpec` object.
1781
1781
  # @param [String] dynamic_template_staging_location
1782
1782
  # Cloud Storage path for staging dependencies. Must be a valid Cloud Storage URL,
1783
1783
  # beginning with `gs://`.
1784
1784
  # @param [String] gcs_path
1785
- # A Cloud Storage path to the template from which to create the job. Must be
1786
- # valid Cloud Storage URL, beginning with 'gs://'.
1785
+ # A Cloud Storage path to the template to use to create the job. Must be valid
1786
+ # Cloud Storage URL, beginning with `gs://`.
1787
1787
  # @param [String] location
1788
1788
  # The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
1789
1789
  # regional-endpoints) to which to direct the request.
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.52.0
4
+ version: 0.54.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-04-21 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.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.54.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: []