google-apis-dataflow_v1b3 0.58.0 → 0.59.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: e8d28f39354c9c29c6dc1e1e2b09c7dfe67447d461c9ccf9093d134a32bbe610
|
4
|
+
data.tar.gz: 9f3319994a080fbcd24fbca1d64164ab0c9b6f9b59df7d1a9c542528f819befe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 534085c2025530feaec21aad0828934f4a3ef5c51ea2642e97aed719055a57fcfa558fd4a553861a8ed5b293b1aae14ac076dd6c4f3fcd567d5f87fd2cc81279
|
7
|
+
data.tar.gz: 3d9e582aa6cc3733b98e4b876e97a76b23720f34fb4787e66e568df267e35a8534d45df84f44afc4d87330484ce4374898aee18d571b80a90cd60ee6249076a0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.59.0 (2024-08-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240807
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.58.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240709
|
@@ -2998,6 +2998,11 @@ module Google
|
|
2998
2998
|
# @return [String]
|
2999
2999
|
attr_accessor :location
|
3000
3000
|
|
3001
|
+
# Optional. The project number of the project this worker belongs to.
|
3002
|
+
# Corresponds to the JSON property `projectNumber`
|
3003
|
+
# @return [Fixnum]
|
3004
|
+
attr_accessor :project_number
|
3005
|
+
|
3001
3006
|
# The initial lease period.
|
3002
3007
|
# Corresponds to the JSON property `requestedLeaseDuration`
|
3003
3008
|
# @return [String]
|
@@ -3033,6 +3038,7 @@ module Google
|
|
3033
3038
|
def update!(**args)
|
3034
3039
|
@current_worker_time = args[:current_worker_time] if args.key?(:current_worker_time)
|
3035
3040
|
@location = args[:location] if args.key?(:location)
|
3041
|
+
@project_number = args[:project_number] if args.key?(:project_number)
|
3036
3042
|
@requested_lease_duration = args[:requested_lease_duration] if args.key?(:requested_lease_duration)
|
3037
3043
|
@unified_worker_request = args[:unified_worker_request] if args.key?(:unified_worker_request)
|
3038
3044
|
@work_item_types = args[:work_item_types] if args.key?(:work_item_types)
|
@@ -4280,6 +4286,11 @@ module Google
|
|
4280
4286
|
# @return [String]
|
4281
4287
|
attr_accessor :location
|
4282
4288
|
|
4289
|
+
# Optional. The project number of the project which owns the WorkItem's job.
|
4290
|
+
# Corresponds to the JSON property `projectNumber`
|
4291
|
+
# @return [Fixnum]
|
4292
|
+
attr_accessor :project_number
|
4293
|
+
|
4283
4294
|
# Untranslated bag-of-bytes WorkProgressUpdateRequest from UnifiedWorker.
|
4284
4295
|
# Corresponds to the JSON property `unifiedWorkerRequest`
|
4285
4296
|
# @return [Hash<String,Object>]
|
@@ -4307,6 +4318,7 @@ module Google
|
|
4307
4318
|
def update!(**args)
|
4308
4319
|
@current_worker_time = args[:current_worker_time] if args.key?(:current_worker_time)
|
4309
4320
|
@location = args[:location] if args.key?(:location)
|
4321
|
+
@project_number = args[:project_number] if args.key?(:project_number)
|
4310
4322
|
@unified_worker_request = args[:unified_worker_request] if args.key?(:unified_worker_request)
|
4311
4323
|
@work_item_statuses = args[:work_item_statuses] if args.key?(:work_item_statuses)
|
4312
4324
|
@worker_id = args[:worker_id] if args.key?(:worker_id)
|
@@ -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.59.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1920,6 +1920,7 @@ module Google
|
|
1920
1920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1921
1921
|
property :current_worker_time, as: 'currentWorkerTime'
|
1922
1922
|
property :location, as: 'location'
|
1923
|
+
property :project_number, :numeric_string => true, as: 'projectNumber'
|
1923
1924
|
property :requested_lease_duration, as: 'requestedLeaseDuration'
|
1924
1925
|
hash :unified_worker_request, as: 'unifiedWorkerRequest'
|
1925
1926
|
collection :work_item_types, as: 'workItemTypes'
|
@@ -2275,6 +2276,7 @@ module Google
|
|
2275
2276
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2276
2277
|
property :current_worker_time, as: 'currentWorkerTime'
|
2277
2278
|
property :location, as: 'location'
|
2279
|
+
property :project_number, :numeric_string => true, as: 'projectNumber'
|
2278
2280
|
hash :unified_worker_request, as: 'unifiedWorkerRequest'
|
2279
2281
|
collection :work_item_statuses, as: 'workItemStatuses', class: Google::Apis::DataflowV1b3::WorkItemStatus, decorator: Google::Apis::DataflowV1b3::WorkItemStatus::Representation
|
2280
2282
|
|
@@ -1494,7 +1494,11 @@ module Google
|
|
1494
1494
|
end
|
1495
1495
|
|
1496
1496
|
# Creates a Cloud Dataflow job from a template. Do not enter confidential
|
1497
|
-
# information when you supply string values using the API.
|
1497
|
+
# information when you supply string values using the API. To create a job, we
|
1498
|
+
# recommend using `projects.locations.templates.create` with a [regional
|
1499
|
+
# endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints).
|
1500
|
+
# Using `projects.templates.create` is not recommended, because your job will
|
1501
|
+
# always start in `us-central1`.
|
1498
1502
|
# @param [String] project_id
|
1499
1503
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1500
1504
|
# @param [String] location
|
@@ -1531,7 +1535,11 @@ module Google
|
|
1531
1535
|
execute_or_queue_command(command, &block)
|
1532
1536
|
end
|
1533
1537
|
|
1534
|
-
# Get the template associated with a template.
|
1538
|
+
# Get the template associated with a template. To get the template, we recommend
|
1539
|
+
# using `projects.locations.templates.get` with a [regional endpoint] (https://
|
1540
|
+
# cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
|
1541
|
+
# templates.get` is not recommended, because only templates that are running in `
|
1542
|
+
# us-central1` are retrieved.
|
1535
1543
|
# @param [String] project_id
|
1536
1544
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1537
1545
|
# @param [String] location
|
@@ -1572,7 +1580,11 @@ module Google
|
|
1572
1580
|
execute_or_queue_command(command, &block)
|
1573
1581
|
end
|
1574
1582
|
|
1575
|
-
#
|
1583
|
+
# Launches a template. To launch a template, we recommend using `projects.
|
1584
|
+
# locations.templates.launch` with a [regional endpoint] (https://cloud.google.
|
1585
|
+
# com/dataflow/docs/concepts/regional-endpoints). Using `projects.templates.
|
1586
|
+
# launch` is not recommended, because jobs launched from the template will
|
1587
|
+
# always start in `us-central1`.
|
1576
1588
|
# @param [String] project_id
|
1577
1589
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1578
1590
|
# @param [String] location
|
@@ -1697,7 +1709,11 @@ module Google
|
|
1697
1709
|
end
|
1698
1710
|
|
1699
1711
|
# Creates a Cloud Dataflow job from a template. Do not enter confidential
|
1700
|
-
# information when you supply string values using the API.
|
1712
|
+
# information when you supply string values using the API. To create a job, we
|
1713
|
+
# recommend using `projects.locations.templates.create` with a [regional
|
1714
|
+
# endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints).
|
1715
|
+
# Using `projects.templates.create` is not recommended, because your job will
|
1716
|
+
# always start in `us-central1`.
|
1701
1717
|
# @param [String] project_id
|
1702
1718
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1703
1719
|
# @param [Google::Apis::DataflowV1b3::CreateJobFromTemplateRequest] create_job_from_template_request_object
|
@@ -1730,7 +1746,11 @@ module Google
|
|
1730
1746
|
execute_or_queue_command(command, &block)
|
1731
1747
|
end
|
1732
1748
|
|
1733
|
-
# Get the template associated with a template.
|
1749
|
+
# Get the template associated with a template. To get the template, we recommend
|
1750
|
+
# using `projects.locations.templates.get` with a [regional endpoint] (https://
|
1751
|
+
# cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using `projects.
|
1752
|
+
# templates.get` is not recommended, because only templates that are running in `
|
1753
|
+
# us-central1` are retrieved.
|
1734
1754
|
# @param [String] project_id
|
1735
1755
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1736
1756
|
# @param [String] gcs_path
|
@@ -1771,7 +1791,11 @@ module Google
|
|
1771
1791
|
execute_or_queue_command(command, &block)
|
1772
1792
|
end
|
1773
1793
|
|
1774
|
-
#
|
1794
|
+
# Launches a template. To launch a template, we recommend using `projects.
|
1795
|
+
# locations.templates.launch` with a [regional endpoint] (https://cloud.google.
|
1796
|
+
# com/dataflow/docs/concepts/regional-endpoints). Using `projects.templates.
|
1797
|
+
# launch` is not recommended, because jobs launched from the template will
|
1798
|
+
# always start in `us-central1`.
|
1775
1799
|
# @param [String] project_id
|
1776
1800
|
# Required. The ID of the Cloud Platform project that the job belongs to.
|
1777
1801
|
# @param [Google::Apis::DataflowV1b3::LaunchTemplateParameters] launch_template_parameters_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.59.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-
|
11
|
+
date: 2024-08-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.59.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: []
|