google-apis-dataflow_v1b3 0.18.0 → 0.21.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: b1e91319168b275a98356f647c263e7b383413da39e29b72dbe1875eac136636
4
- data.tar.gz: d1243afc50848ffb29501741db41d1cec141ea59d6bd9789e676b8e4e29b0a61
3
+ metadata.gz: afc4fabca1eec869fd400f33885f54d1e3591f69f3c55b7c4b78792a7ab3808f
4
+ data.tar.gz: fff096171588843e0ecd8a41719bc27aa8905865abf26ed1abc4bc0e125db42d
5
5
  SHA512:
6
- metadata.gz: a2b700025b9238012ccfc19a78c80228c5b7c8fe6728afc3c111bf17fc1aed80d6137fbe68f9c3f6bbbca2864d06a970c5734c7f510b2631c4f9e08490d4a3c5
7
- data.tar.gz: 2e1fd8b735faa253582e970432fe79e7bc3b14bff3b93e111f784afd6d03d044c6f01a751264a82f57e59be56ebf639c07c7ecf8a9792fac1145759e9fc67305
6
+ metadata.gz: 40b7ac3ef9643b52d1917aff36bacca3920f49ed08feee2e6c5f4b0b253f86e0ff88aee38b6d39d5b91a0859500299d44f1127ca46367f8835accc666b613744
7
+ data.tar.gz: 221237b8cff7683633a7e2ed56e002cedd15a1341e52ddd0ec575d34d88bd3d7f40968acd5bcdf9a69fac47605f1a4a0942bb8200c2d34d69e55ab6cca87a79d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.21.0 (2022-05-20)
4
+
5
+ * Regenerated from discovery document revision 20220513
6
+
7
+ ### v0.20.0 (2022-04-21)
8
+
9
+ * Regenerated from discovery document revision 20220414
10
+
11
+ ### v0.19.0 (2022-04-14)
12
+
13
+ * Regenerated from discovery document revision 20220405
14
+
3
15
  ### v0.18.0 (2022-03-09)
4
16
 
5
17
  * Regenerated from discovery document revision 20220301
@@ -466,6 +466,21 @@ module Google
466
466
  # @return [String]
467
467
  attr_accessor :image
468
468
 
469
+ # Cloud Storage path to self-signed certificate of private registry.
470
+ # Corresponds to the JSON property `imageRepositoryCertPath`
471
+ # @return [String]
472
+ attr_accessor :image_repository_cert_path
473
+
474
+ # Secret Manager secret id for password to authenticate to private registry.
475
+ # Corresponds to the JSON property `imageRepositoryPasswordSecretId`
476
+ # @return [String]
477
+ attr_accessor :image_repository_password_secret_id
478
+
479
+ # Secret Manager secret id for username to authenticate to private registry.
480
+ # Corresponds to the JSON property `imageRepositoryUsernameSecretId`
481
+ # @return [String]
482
+ attr_accessor :image_repository_username_secret_id
483
+
469
484
  # Metadata describing a template.
470
485
  # Corresponds to the JSON property `metadata`
471
486
  # @return [Google::Apis::DataflowV1b3::TemplateMetadata]
@@ -484,6 +499,9 @@ module Google
484
499
  def update!(**args)
485
500
  @default_environment = args[:default_environment] if args.key?(:default_environment)
486
501
  @image = args[:image] if args.key?(:image)
502
+ @image_repository_cert_path = args[:image_repository_cert_path] if args.key?(:image_repository_cert_path)
503
+ @image_repository_password_secret_id = args[:image_repository_password_secret_id] if args.key?(:image_repository_password_secret_id)
504
+ @image_repository_username_secret_id = args[:image_repository_username_secret_id] if args.key?(:image_repository_username_secret_id)
487
505
  @metadata = args[:metadata] if args.key?(:metadata)
488
506
  @sdk_info = args[:sdk_info] if args.key?(:sdk_info)
489
507
  end
@@ -1472,10 +1490,12 @@ module Google
1472
1490
  # @return [Fixnum]
1473
1491
  attr_accessor :disk_size_gb
1474
1492
 
1475
- # If true, save a heap dump before killing a thread or process which is GC
1476
- # thrashing or out of memory. The location of the heap file will either be
1477
- # echoed back to the user, or the user will be given the opportunity to download
1478
- # the heap file.
1493
+ # If true, when processing time is spent almost entirely on garbage collection (
1494
+ # GC), saves a heap dump before ending the thread or process. If false, ends the
1495
+ # thread or process without saving a heap dump. Does not save a heap dump when
1496
+ # the Java Virtual Machine (JVM) has an out of memory error during processing.
1497
+ # The location of the heap file is either echoed back to the user, or the user
1498
+ # is given the opportunity to download the heap file.
1479
1499
  # Corresponds to the JSON property `dumpHeapOnOom`
1480
1500
  # @return [Boolean]
1481
1501
  attr_accessor :dump_heap_on_oom
@@ -1532,9 +1552,8 @@ module Google
1532
1552
  # @return [Fixnum]
1533
1553
  attr_accessor :num_workers
1534
1554
 
1535
- # Cloud Storage bucket (directory) to upload heap dumps to the given location.
1536
- # Enabling this implies that heap dumps should be generated on OOM (
1537
- # dump_heap_on_oom is set to true).
1555
+ # Cloud Storage bucket (directory) to upload heap dumps to. Enabling this field
1556
+ # implies that `dump_heap_on_oom` is set to true.
1538
1557
  # Corresponds to the JSON property `saveHeapDumpsToGcsPath`
1539
1558
  # @return [String]
1540
1559
  attr_accessor :save_heap_dumps_to_gcs_path
@@ -1988,7 +2007,8 @@ module Google
1988
2007
  end
1989
2008
  end
1990
2009
 
1991
- # Defines a job to be run by the Cloud Dataflow service.
2010
+ # Defines a job to be run by the Cloud Dataflow service. Do not enter
2011
+ # confidential information when you supply string values using the API.
1992
2012
  class Job
1993
2013
  include Google::Apis::Core::Hashable
1994
2014
 
@@ -2066,11 +2086,11 @@ module Google
2066
2086
  # @return [String]
2067
2087
  attr_accessor :location
2068
2088
 
2069
- # The user-specified Cloud Dataflow job name. Only one Job with a given name may
2070
- # exist in a project at any given time. If a caller attempts to create a Job
2071
- # with the same name as an already-existing Job, the attempt returns the
2072
- # existing Job. The name must match the regular expression `[a-z]([-a-z0-9]`0,38`
2073
- # [a-z0-9])?`
2089
+ # The user-specified Cloud Dataflow job name. Only one Job with a given name can
2090
+ # exist in a project within one region at any given time. Jobs in different
2091
+ # regions can have the same name. If a caller attempts to create a Job with the
2092
+ # same name as an already-existing Job, the attempt returns the existing Job.
2093
+ # The name must match the regular expression `[a-z]([-a-z0-9]`0,38`[a-z0-9])?`
2074
2094
  # Corresponds to the JSON property `name`
2075
2095
  # @return [String]
2076
2096
  attr_accessor :name
@@ -2566,7 +2586,8 @@ module Google
2566
2586
  class LaunchFlexTemplateResponse
2567
2587
  include Google::Apis::Core::Hashable
2568
2588
 
2569
- # Defines a job to be run by the Cloud Dataflow service.
2589
+ # Defines a job to be run by the Cloud Dataflow service. Do not enter
2590
+ # confidential information when you supply string values using the API.
2570
2591
  # Corresponds to the JSON property `job`
2571
2592
  # @return [Google::Apis::DataflowV1b3::Job]
2572
2593
  attr_accessor :job
@@ -2581,7 +2602,9 @@ module Google
2581
2602
  end
2582
2603
  end
2583
2604
 
2584
- # Parameters to provide to the template being launched.
2605
+ # Parameters to provide to the template being launched. Note that the [metadata
2606
+ # in the pipeline code] (https://cloud.google.com/dataflow/docs/guides/templates/
2607
+ # creating-templates#metadata) determines which runtime parameters are valid.
2585
2608
  class LaunchTemplateParameters
2586
2609
  include Google::Apis::Core::Hashable
2587
2610
 
@@ -2631,7 +2654,8 @@ module Google
2631
2654
  class LaunchTemplateResponse
2632
2655
  include Google::Apis::Core::Hashable
2633
2656
 
2634
- # Defines a job to be run by the Cloud Dataflow service.
2657
+ # Defines a job to be run by the Cloud Dataflow service. Do not enter
2658
+ # confidential information when you supply string values using the API.
2635
2659
  # Corresponds to the JSON property `job`
2636
2660
  # @return [Google::Apis::DataflowV1b3::Job]
2637
2661
  attr_accessor :job
@@ -3908,7 +3932,7 @@ module Google
3908
3932
  # @return [String]
3909
3933
  attr_accessor :network
3910
3934
 
3911
- # The initial number of Google Compute Engine instnaces for the job.
3935
+ # The initial number of Google Compute Engine instances for the job.
3912
3936
  # Corresponds to the JSON property `numWorkers`
3913
3937
  # @return [Fixnum]
3914
3938
  attr_accessor :num_workers
@@ -4034,13 +4058,14 @@ module Google
4034
4058
  end
4035
4059
  end
4036
4060
 
4037
- # Defines a SDK harness container for executing Dataflow pipelines.
4061
+ # Defines an SDK harness container for executing Dataflow pipelines.
4038
4062
  class SdkHarnessContainerImage
4039
4063
  include Google::Apis::Core::Hashable
4040
4064
 
4041
- # The set of capabilities enumerated in the above Environment proto. See also
4042
- # https://github.com/apache/beam/blob/master/model/pipeline/src/main/proto/
4043
- # beam_runner_api.proto
4065
+ # The set of capabilities enumerated in the above Environment proto. See also [
4066
+ # beam_runner_api.proto](https://github.com/apache/beam/blob/master/model/
4067
+ # pipeline/src/main/proto/org/apache/beam/model/pipeline/v1/beam_runner_api.
4068
+ # proto)
4044
4069
  # Corresponds to the JSON property `capabilities`
4045
4070
  # @return [Array<String>]
4046
4071
  attr_accessor :capabilities
@@ -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.18.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220301"
25
+ REVISION = "20220513"
26
26
  end
27
27
  end
28
28
  end
@@ -1119,6 +1119,9 @@ module Google
1119
1119
  property :default_environment, as: 'defaultEnvironment', class: Google::Apis::DataflowV1b3::FlexTemplateRuntimeEnvironment, decorator: Google::Apis::DataflowV1b3::FlexTemplateRuntimeEnvironment::Representation
1120
1120
 
1121
1121
  property :image, as: 'image'
1122
+ property :image_repository_cert_path, as: 'imageRepositoryCertPath'
1123
+ property :image_repository_password_secret_id, as: 'imageRepositoryPasswordSecretId'
1124
+ property :image_repository_username_secret_id, as: 'imageRepositoryUsernameSecretId'
1122
1125
  property :metadata, as: 'metadata', class: Google::Apis::DataflowV1b3::TemplateMetadata, decorator: Google::Apis::DataflowV1b3::TemplateMetadata::Representation
1123
1126
 
1124
1127
  property :sdk_info, as: 'sdkInfo', class: Google::Apis::DataflowV1b3::SdkInfo, decorator: Google::Apis::DataflowV1b3::SdkInfo::Representation
@@ -171,7 +171,8 @@ module Google
171
171
  # Creates a Cloud Dataflow job. To create a job, we recommend using `projects.
172
172
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
173
173
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
174
- # not recommended, as your job will always start in `us-central1`.
174
+ # not recommended, as your job will always start in `us-central1`. Do not enter
175
+ # confidential information when you supply string values using the API.
175
176
  # @param [String] project_id
176
177
  # The ID of the Cloud Platform project that the job belongs to.
177
178
  # @param [Google::Apis::DataflowV1b3::Job] job_object
@@ -721,7 +722,8 @@ module Google
721
722
  # Creates a Cloud Dataflow job. To create a job, we recommend using `projects.
722
723
  # locations.jobs.create` with a [regional endpoint] (https://cloud.google.com/
723
724
  # dataflow/docs/concepts/regional-endpoints). Using `projects.jobs.create` is
724
- # not recommended, as your job will always start in `us-central1`.
725
+ # not recommended, as your job will always start in `us-central1`. Do not enter
726
+ # confidential information when you supply string values using the API.
725
727
  # @param [String] project_id
726
728
  # The ID of the Cloud Platform project that the job belongs to.
727
729
  # @param [String] location
@@ -1498,7 +1500,8 @@ module Google
1498
1500
  execute_or_queue_command(command, &block)
1499
1501
  end
1500
1502
 
1501
- # Creates a Cloud Dataflow job from a template.
1503
+ # Creates a Cloud Dataflow job from a template. Do not enter confidential
1504
+ # information when you supply string values using the API.
1502
1505
  # @param [String] project_id
1503
1506
  # Required. The ID of the Cloud Platform project that the job belongs to.
1504
1507
  # @param [String] location
@@ -1700,7 +1703,8 @@ module Google
1700
1703
  execute_or_queue_command(command, &block)
1701
1704
  end
1702
1705
 
1703
- # Creates a Cloud Dataflow job from a template.
1706
+ # Creates a Cloud Dataflow job from a template. Do not enter confidential
1707
+ # information when you supply string values using the API.
1704
1708
  # @param [String] project_id
1705
1709
  # Required. The ID of the Cloud Platform project that the job belongs to.
1706
1710
  # @param [Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest] create_job_from_template_request_object
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.18.0
4
+ version: 0.21.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: 2022-03-14 00:00:00.000000000 Z
11
+ date: 2022-05-23 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.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.21.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: []