google-apis-datapipelines_v1 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/datapipelines_v1/classes.rb +7 -0
- data/lib/google/apis/datapipelines_v1/gem_version.rb +2 -2
- data/lib/google/apis/datapipelines_v1/representations.rb +1 -0
- data/lib/google/apis/datapipelines_v1/service.rb +3 -2
- data/lib/google/apis/datapipelines_v1.rb +3 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 136b198af712e3e7dc420bb43a35a82b6e87ff1a62605c82c8e69f33621562d6
|
4
|
+
data.tar.gz: 506852d4b79ac5c4fa8323c960cda3e569e050444edd59ed4593efcbad600674
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80b5647ef27f639b88dd12059749a3f981a33244ec2d00f9db45a2e81b84fb41fdb837c4244fc910aad2dce438f405421d50b88bf6b909740c80114f310126a0
|
7
|
+
data.tar.gz: 7de9e304b12698f8aa145a50c22251af062a58be947ac057fa8a4fdbff304a6a02a57b950521951568e494d49ee49b4df83a7dd4d5a2a955ee12e1023a696f1e
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
79
79
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
81
81
|
|
82
|
-
The [product documentation](https://
|
82
|
+
The [product documentation](https://cloud.google.com/dataflow/docs/guides/data-pipelines) may provide guidance regarding the preferred client library to use.
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
@@ -517,6 +517,12 @@ module Google
|
|
517
517
|
# @return [String]
|
518
518
|
attr_accessor :name
|
519
519
|
|
520
|
+
# Immutable. The sources of the pipeline (for example, Dataplex). The keys and
|
521
|
+
# values are set by the corresponding sources during pipeline creation.
|
522
|
+
# Corresponds to the JSON property `pipelineSources`
|
523
|
+
# @return [Hash<String,String>]
|
524
|
+
attr_accessor :pipeline_sources
|
525
|
+
|
520
526
|
# Details of the schedule the pipeline runs on.
|
521
527
|
# Corresponds to the JSON property `scheduleInfo`
|
522
528
|
# @return [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ScheduleSpec]
|
@@ -558,6 +564,7 @@ module Google
|
|
558
564
|
@job_count = args[:job_count] if args.key?(:job_count)
|
559
565
|
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
560
566
|
@name = args[:name] if args.key?(:name)
|
567
|
+
@pipeline_sources = args[:pipeline_sources] if args.key?(:pipeline_sources)
|
561
568
|
@schedule_info = args[:schedule_info] if args.key?(:schedule_info)
|
562
569
|
@scheduler_service_account_email = args[:scheduler_service_account_email] if args.key?(:scheduler_service_account_email)
|
563
570
|
@state = args[:state] if args.key?(:state)
|
@@ -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.2.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 = "20211029"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -243,6 +243,7 @@ module Google
|
|
243
243
|
property :job_count, as: 'jobCount'
|
244
244
|
property :last_update_time, as: 'lastUpdateTime'
|
245
245
|
property :name, as: 'name'
|
246
|
+
hash :pipeline_sources, as: 'pipelineSources'
|
246
247
|
property :schedule_info, as: 'scheduleInfo', class: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ScheduleSpec, decorator: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ScheduleSpec::Representation
|
247
248
|
|
248
249
|
property :scheduler_service_account_email, as: 'schedulerServiceAccountEmail'
|
@@ -22,7 +22,8 @@ module Google
|
|
22
22
|
module DatapipelinesV1
|
23
23
|
# Data pipelines API
|
24
24
|
#
|
25
|
-
#
|
25
|
+
# Data Pipelines provides an interface for creating, updating, and managing
|
26
|
+
# recurring Data Analytics jobs.
|
26
27
|
#
|
27
28
|
# @example
|
28
29
|
# require 'google/apis/datapipelines_v1'
|
@@ -30,7 +31,7 @@ module Google
|
|
30
31
|
# Datapipelines = Google::Apis::DatapipelinesV1 # Alias the module
|
31
32
|
# service = Datapipelines::DatapipelinesService.new
|
32
33
|
#
|
33
|
-
# @see https://
|
34
|
+
# @see https://cloud.google.com/dataflow/docs/guides/data-pipelines
|
34
35
|
class DatapipelinesService < Google::Apis::Core::BaseService
|
35
36
|
# @return [String]
|
36
37
|
# API key. Your API key identifies your project and provides you with API access,
|
@@ -21,9 +21,10 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Data pipelines API
|
23
23
|
#
|
24
|
-
#
|
24
|
+
# Data Pipelines provides an interface for creating, updating, and managing
|
25
|
+
# recurring Data Analytics jobs.
|
25
26
|
#
|
26
|
-
# @see https://
|
27
|
+
# @see https://cloud.google.com/dataflow/docs/guides/data-pipelines
|
27
28
|
module DatapipelinesV1
|
28
29
|
# Version of the Data pipelines API this client connects to.
|
29
30
|
# This is NOT the gem version.
|
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.2.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: 2021-
|
11
|
+
date: 2021-11-15 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.2.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: []
|