google-apis-dataflow_v1b3 0.18.0 → 0.19.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 790aae0b82f3f0b7cc9c03987f2fcec67ba754da09cb96aa2176dafe8000ae43
|
4
|
+
data.tar.gz: 5209c3c23c488167f8868c803d4de02bd06a7113f083c32d39c181e792c83da1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e8ecd9992fa738e8ff910c69a0bcca18b6cdbecaefe9c4d1be4637495e85271e5b9b8270d468ffdad359a56e99022d47f0f9c2d7092779ba680a38145681456
|
7
|
+
data.tar.gz: f75b3c91c350b1ca77933b5ed433e2aea5918768fe9e961a874a3f061000ef58cc6dec8797138a13c44aa587e0b6a9d3278202c60f4c8c902ee6a50c68d54edd
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -1988,7 +2006,8 @@ module Google
|
|
1988
2006
|
end
|
1989
2007
|
end
|
1990
2008
|
|
1991
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
2009
|
+
# Defines a job to be run by the Cloud Dataflow service. Do not enter
|
2010
|
+
# confidential information when you supply string values using the API.
|
1992
2011
|
class Job
|
1993
2012
|
include Google::Apis::Core::Hashable
|
1994
2013
|
|
@@ -2566,7 +2585,8 @@ module Google
|
|
2566
2585
|
class LaunchFlexTemplateResponse
|
2567
2586
|
include Google::Apis::Core::Hashable
|
2568
2587
|
|
2569
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
2588
|
+
# Defines a job to be run by the Cloud Dataflow service. Do not enter
|
2589
|
+
# confidential information when you supply string values using the API.
|
2570
2590
|
# Corresponds to the JSON property `job`
|
2571
2591
|
# @return [Google::Apis::DataflowV1b3::Job]
|
2572
2592
|
attr_accessor :job
|
@@ -2581,7 +2601,9 @@ module Google
|
|
2581
2601
|
end
|
2582
2602
|
end
|
2583
2603
|
|
2584
|
-
# Parameters to provide to the template being launched.
|
2604
|
+
# Parameters to provide to the template being launched. Note that the [metadata
|
2605
|
+
# in the pipeline code] (https://cloud.google.com/dataflow/docs/guides/templates/
|
2606
|
+
# creating-templates#metadata) determines which runtime parameters are valid.
|
2585
2607
|
class LaunchTemplateParameters
|
2586
2608
|
include Google::Apis::Core::Hashable
|
2587
2609
|
|
@@ -2631,7 +2653,8 @@ module Google
|
|
2631
2653
|
class LaunchTemplateResponse
|
2632
2654
|
include Google::Apis::Core::Hashable
|
2633
2655
|
|
2634
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
2656
|
+
# Defines a job to be run by the Cloud Dataflow service. Do not enter
|
2657
|
+
# confidential information when you supply string values using the API.
|
2635
2658
|
# Corresponds to the JSON property `job`
|
2636
2659
|
# @return [Google::Apis::DataflowV1b3::Job]
|
2637
2660
|
attr_accessor :job
|
@@ -3908,7 +3931,7 @@ module Google
|
|
3908
3931
|
# @return [String]
|
3909
3932
|
attr_accessor :network
|
3910
3933
|
|
3911
|
-
# The initial number of Google Compute Engine
|
3934
|
+
# The initial number of Google Compute Engine instances for the job.
|
3912
3935
|
# Corresponds to the JSON property `numWorkers`
|
3913
3936
|
# @return [Fixnum]
|
3914
3937
|
attr_accessor :num_workers
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.19.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 = "
|
25
|
+
REVISION = "20220405"
|
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.
|
4
|
+
version: 0.19.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-
|
11
|
+
date: 2022-04-18 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.19.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: []
|