google-apis-datapipelines_v1 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec61f82be27b79860bfb4bf95c17249e3d4adaab879ae1a2441476c0f87293c2
|
4
|
+
data.tar.gz: '09f8c06dd5472039d0b527940393bbf92c228fa4242fe14e7302bb2378bf74a6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 579d3f987efb60bd905fd3fe08d4ec01a16e4b62f655315aa7b6833606b51dbab4a7e71527cf2e731b6373574e8c2ec288945a3edd15a0c7df64bb3ae62897dc
|
7
|
+
data.tar.gz: bac944d1eb9a9be96d501608983dca3444b041c8a7f97192791414606ee8d7e231288c3c4af989ff9f7469e8a2610de9c34eea6e552a3f4b1a3b13f3facd915e
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datapipelines_v1"
|
|
51
51
|
client = Google::Apis::DatapipelinesV1::DatapipelinesService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -474,8 +474,8 @@ module Google
|
|
474
474
|
end
|
475
475
|
end
|
476
476
|
|
477
|
-
# The main pipeline entity and all the
|
478
|
-
# linked jobs.
|
477
|
+
# The main pipeline entity and all the necessary metadata for launching and
|
478
|
+
# managing linked jobs.
|
479
479
|
class GoogleCloudDatapipelinesV1Pipeline
|
480
480
|
include Google::Apis::Core::Hashable
|
481
481
|
|
@@ -506,13 +506,13 @@ module Google
|
|
506
506
|
# pipelines/PIPELINE_ID`. * `PROJECT_ID` can contain letters ([A-Za-z]), numbers
|
507
507
|
# ([0-9]), hyphens (-), colons (:), and periods (.). For more information, see [
|
508
508
|
# Identifying projects](https://cloud.google.com/resource-manager/docs/creating-
|
509
|
-
# managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID
|
509
|
+
# managing-projects#identifying_projects). * `LOCATION_ID` is the canonical ID
|
510
510
|
# for the pipeline's location. The list of available locations can be obtained
|
511
|
-
# by calling ListLocations
|
512
|
-
# available in all regions. It depends on Cloud
|
513
|
-
# application, so it's only available in [App Engine
|
514
|
-
# google.com/about/locations#region). * `PIPELINE_ID` is
|
515
|
-
# Must be unique for the selected project and location.
|
511
|
+
# by calling `google.cloud.location.Locations.ListLocations`. Note that the Data
|
512
|
+
# Pipelines service is not available in all regions. It depends on Cloud
|
513
|
+
# Scheduler, an App Engine application, so it's only available in [App Engine
|
514
|
+
# regions](https://cloud.google.com/about/locations#region). * `PIPELINE_ID` is
|
515
|
+
# the ID of the pipeline. Must be unique for the selected project and location.
|
516
516
|
# Corresponds to the JSON property `name`
|
517
517
|
# @return [String]
|
518
518
|
attr_accessor :name
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatapipelinesV1
|
18
18
|
# Version of the google-apis-datapipelines_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211203"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -50,8 +50,8 @@ module Google
|
|
50
50
|
@batch_path = 'batch'
|
51
51
|
end
|
52
52
|
|
53
|
-
# Lists pipelines. Returns a "
|
54
|
-
#
|
53
|
+
# Lists pipelines. Returns a "FORBIDDEN" error if the caller doesn't have
|
54
|
+
# permission to access it.
|
55
55
|
# @param [String] parent
|
56
56
|
# Required. The location name. For example: `projects/PROJECT_ID/locations/
|
57
57
|
# LOCATION_ID`.
|
@@ -60,11 +60,9 @@ module Google
|
|
60
60
|
# pipelines will be returned. Multiple filters can be applied and must be comma
|
61
61
|
# separated. Fields eligible for filtering are: + `type`: The type of the
|
62
62
|
# pipeline (streaming or batch). Allowed values are `ALL`, `BATCH`, and `
|
63
|
-
# STREAMING`. + `
|
64
|
-
#
|
65
|
-
#
|
66
|
-
# Allowed values are `ALL`, `ACTIVE`, `ARCHIVED`, and `PAUSED`. For example, to
|
67
|
-
# limit results to active batch processing pipelines: type:BATCH,status:ACTIVE
|
63
|
+
# STREAMING`. + `status`: The activity status of the pipeline. Allowed values
|
64
|
+
# are `ALL`, `ACTIVE`, `ARCHIVED`, and `PAUSED`. For example, to limit results
|
65
|
+
# to active batch processing pipelines: type:BATCH,status:ACTIVE
|
68
66
|
# @param [Fixnum] page_size
|
69
67
|
# The maximum number of entities to return. The service may return fewer than
|
70
68
|
# this value, even if there are additional pages. If unspecified, the max limit
|
@@ -176,7 +174,7 @@ module Google
|
|
176
174
|
# exists. Returns a "FORBIDDEN" error if the caller doesn't have permission to
|
177
175
|
# access it.
|
178
176
|
# @param [String] name
|
179
|
-
# Required. The
|
177
|
+
# Required. The pipeline name. For example: `projects/PROJECT_ID/locations/
|
180
178
|
# LOCATION_ID/pipelines/PIPELINE_ID`.
|
181
179
|
# @param [String] fields
|
182
180
|
# Selector specifying which fields to include in a partial response.
|
@@ -205,8 +203,8 @@ module Google
|
|
205
203
|
execute_or_queue_command(command, &block)
|
206
204
|
end
|
207
205
|
|
208
|
-
# Updates a pipeline. If successful, the updated
|
209
|
-
#
|
206
|
+
# Updates a pipeline. If successful, the updated Pipeline is returned. Returns `
|
207
|
+
# NOT_FOUND` if the pipeline doesn't exist. If UpdatePipeline does not return
|
210
208
|
# successfully, you can retry the UpdatePipeline request until you receive a
|
211
209
|
# successful response.
|
212
210
|
# @param [String] name
|
@@ -214,13 +212,13 @@ module Google
|
|
214
212
|
# pipelines/PIPELINE_ID`. * `PROJECT_ID` can contain letters ([A-Za-z]), numbers
|
215
213
|
# ([0-9]), hyphens (-), colons (:), and periods (.). For more information, see [
|
216
214
|
# Identifying projects](https://cloud.google.com/resource-manager/docs/creating-
|
217
|
-
# managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID
|
215
|
+
# managing-projects#identifying_projects). * `LOCATION_ID` is the canonical ID
|
218
216
|
# for the pipeline's location. The list of available locations can be obtained
|
219
|
-
# by calling ListLocations
|
220
|
-
# available in all regions. It depends on Cloud
|
221
|
-
# application, so it's only available in [App Engine
|
222
|
-
# google.com/about/locations#region). * `PIPELINE_ID` is
|
223
|
-
# Must be unique for the selected project and location.
|
217
|
+
# by calling `google.cloud.location.Locations.ListLocations`. Note that the Data
|
218
|
+
# Pipelines service is not available in all regions. It depends on Cloud
|
219
|
+
# Scheduler, an App Engine application, so it's only available in [App Engine
|
220
|
+
# regions](https://cloud.google.com/about/locations#region). * `PIPELINE_ID` is
|
221
|
+
# the ID of the pipeline. Must be unique for the selected project and location.
|
224
222
|
# @param [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1Pipeline] google_cloud_datapipelines_v1_pipeline_object
|
225
223
|
# @param [String] update_mask
|
226
224
|
# The list of fields to be updated.
|
@@ -257,7 +255,7 @@ module Google
|
|
257
255
|
# Creates a job for the specified pipeline directly. You can use this method
|
258
256
|
# when the internal scheduler is not configured and you want to trigger the job
|
259
257
|
# directly or through an external system. Returns a "NOT_FOUND" error if the
|
260
|
-
# pipeline doesn't exist. Returns a "
|
258
|
+
# pipeline doesn't exist. Returns a "FORBIDDEN" error if the user doesn't have
|
261
259
|
# permission to access the pipeline or run jobs for the pipeline.
|
262
260
|
# @param [String] name
|
263
261
|
# Required. The pipeline name. For example: `projects/PROJECT_ID/locations/
|
@@ -294,8 +292,7 @@ module Google
|
|
294
292
|
|
295
293
|
# Freezes pipeline execution permanently. If there's a corresponding scheduler
|
296
294
|
# entry, it's deleted, and the pipeline state is changed to "ARCHIVED". However,
|
297
|
-
# pipeline metadata is retained.
|
298
|
-
# ARCHIVED.
|
295
|
+
# pipeline metadata is retained.
|
299
296
|
# @param [String] name
|
300
297
|
# Required. The pipeline name. For example: `projects/PROJECT_ID/locations/
|
301
298
|
# LOCATION_ID/pipelines/PIPELINE_ID`.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datapipelines_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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:
|
11
|
+
date: 2022-01-10 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-datapipelines_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datapipelines_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datapipelines_v1/v0.3.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datapipelines_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Data pipelines API V1
|