google-apis-datastream_v1 0.17.0 → 0.19.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: d6284a9733d466ef22aca2c6442d0123776a2aff8a715eacb45720368bc3f9ad
|
4
|
+
data.tar.gz: 39e9581095a90d5a40f5e7d2778a6ab6451c90db37539738541c3d8eb490836d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b03fe97532011b3a377d82b395361ca006bec0e53c5abdda96b7fd5b917328b09220862de6ec02cb89415567f82ee2ed6a2ea16f5a36b94eebd50560813e3e2e
|
7
|
+
data.tar.gz: 812ebf46384a790a3340326d2718be9fddd648df1e96808d4e9154a8a6f5c4c5fa5dd385480a2505e0e3b48ec0d6177692f1e7e090119bb4598d372ef6b475aa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2023-02-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230201
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
8
|
+
### v0.18.0 (2022-12-08)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20221128
|
11
|
+
|
3
12
|
### v0.17.0 (2022-11-01)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221019
|
@@ -1125,6 +1125,12 @@ module Google
|
|
1125
1125
|
# @return [Google::Apis::DatastreamV1::MysqlRdbms]
|
1126
1126
|
attr_accessor :include_objects
|
1127
1127
|
|
1128
|
+
# Maximum number of concurrent backfill tasks. The number should be non negative.
|
1129
|
+
# If not set (or set to 0), the system's default value will be used.
|
1130
|
+
# Corresponds to the JSON property `maxConcurrentBackfillTasks`
|
1131
|
+
# @return [Fixnum]
|
1132
|
+
attr_accessor :max_concurrent_backfill_tasks
|
1133
|
+
|
1128
1134
|
# Maximum number of concurrent CDC tasks. The number should be non negative. If
|
1129
1135
|
# not set (or set to 0), the system's default value will be used.
|
1130
1136
|
# Corresponds to the JSON property `maxConcurrentCdcTasks`
|
@@ -1139,6 +1145,7 @@ module Google
|
|
1139
1145
|
def update!(**args)
|
1140
1146
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1141
1147
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1148
|
+
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
|
1142
1149
|
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
1143
1150
|
end
|
1144
1151
|
end
|
@@ -1559,6 +1566,12 @@ module Google
|
|
1559
1566
|
# @return [Google::Apis::DatastreamV1::OracleRdbms]
|
1560
1567
|
attr_accessor :include_objects
|
1561
1568
|
|
1569
|
+
# Maximum number of concurrent backfill tasks. The number should be non negative.
|
1570
|
+
# If not set (or set to 0), the system's default value will be used.
|
1571
|
+
# Corresponds to the JSON property `maxConcurrentBackfillTasks`
|
1572
|
+
# @return [Fixnum]
|
1573
|
+
attr_accessor :max_concurrent_backfill_tasks
|
1574
|
+
|
1562
1575
|
# Maximum number of concurrent CDC tasks. The number should be non negative. If
|
1563
1576
|
# not set (or set to 0), the system's default value will be used.
|
1564
1577
|
# Corresponds to the JSON property `maxConcurrentCdcTasks`
|
@@ -1579,6 +1592,7 @@ module Google
|
|
1579
1592
|
@drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
|
1580
1593
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1581
1594
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1595
|
+
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
|
1582
1596
|
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
1583
1597
|
@stream_large_objects = args[:stream_large_objects] if args.key?(:stream_large_objects)
|
1584
1598
|
end
|
@@ -1799,6 +1813,12 @@ module Google
|
|
1799
1813
|
# @return [Google::Apis::DatastreamV1::PostgresqlRdbms]
|
1800
1814
|
attr_accessor :include_objects
|
1801
1815
|
|
1816
|
+
# Maximum number of concurrent backfill tasks. The number should be non negative.
|
1817
|
+
# If not set (or set to 0), the system's default value will be used.
|
1818
|
+
# Corresponds to the JSON property `maxConcurrentBackfillTasks`
|
1819
|
+
# @return [Fixnum]
|
1820
|
+
attr_accessor :max_concurrent_backfill_tasks
|
1821
|
+
|
1802
1822
|
# Required. The name of the publication that includes the set of all tables that
|
1803
1823
|
# are defined in the stream's include_objects.
|
1804
1824
|
# Corresponds to the JSON property `publication`
|
@@ -1819,6 +1839,7 @@ module Google
|
|
1819
1839
|
def update!(**args)
|
1820
1840
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1821
1841
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1842
|
+
@max_concurrent_backfill_tasks = args[:max_concurrent_backfill_tasks] if args.key?(:max_concurrent_backfill_tasks)
|
1822
1843
|
@publication = args[:publication] if args.key?(:publication)
|
1823
1844
|
@replication_slot = args[:replication_slot] if args.key?(:replication_slot)
|
1824
1845
|
end
|
@@ -1993,7 +2014,7 @@ module Google
|
|
1993
2014
|
class SingleTargetDataset
|
1994
2015
|
include Google::Apis::Core::Hashable
|
1995
2016
|
|
1996
|
-
#
|
2017
|
+
# The dataset ID of the target dataset.
|
1997
2018
|
# Corresponds to the JSON property `datasetId`
|
1998
2019
|
# @return [String]
|
1999
2020
|
attr_accessor :dataset_id
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatastreamV1
|
18
18
|
# Version of the google-apis-datastream_v1 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
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230201"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -809,6 +809,7 @@ module Google
|
|
809
809
|
|
810
810
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
|
811
811
|
|
812
|
+
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
|
812
813
|
property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
|
813
814
|
end
|
814
815
|
end
|
@@ -922,6 +923,7 @@ module Google
|
|
922
923
|
|
923
924
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
924
925
|
|
926
|
+
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
|
925
927
|
property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
|
926
928
|
property :stream_large_objects, as: 'streamLargeObjects', class: Google::Apis::DatastreamV1::StreamLargeObjects, decorator: Google::Apis::DatastreamV1::StreamLargeObjects::Representation
|
927
929
|
|
@@ -994,6 +996,7 @@ module Google
|
|
994
996
|
|
995
997
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::PostgresqlRdbms, decorator: Google::Apis::DatastreamV1::PostgresqlRdbms::Representation
|
996
998
|
|
999
|
+
property :max_concurrent_backfill_tasks, as: 'maxConcurrentBackfillTasks'
|
997
1000
|
property :publication, as: 'publication'
|
998
1001
|
property :replication_slot, as: 'replicationSlot'
|
999
1002
|
end
|
@@ -584,6 +584,8 @@ module Google
|
|
584
584
|
# @param [String] parent
|
585
585
|
# Required. The parent that owns the collection of PrivateConnections.
|
586
586
|
# @param [Google::Apis::DatastreamV1::PrivateConnection] private_connection_object
|
587
|
+
# @param [Boolean] force
|
588
|
+
# Optional. If set to true, will skip validations.
|
587
589
|
# @param [String] private_connection_id
|
588
590
|
# Required. The private connectivity identifier.
|
589
591
|
# @param [String] request_id
|
@@ -614,13 +616,14 @@ module Google
|
|
614
616
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
615
617
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
616
618
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
617
|
-
def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
619
|
+
def create_project_location_private_connection(parent, private_connection_object = nil, force: nil, private_connection_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
618
620
|
command = make_simple_command(:post, 'v1/{+parent}/privateConnections', options)
|
619
621
|
command.request_representation = Google::Apis::DatastreamV1::PrivateConnection::Representation
|
620
622
|
command.request_object = private_connection_object
|
621
623
|
command.response_representation = Google::Apis::DatastreamV1::Operation::Representation
|
622
624
|
command.response_class = Google::Apis::DatastreamV1::Operation
|
623
625
|
command.params['parent'] = parent unless parent.nil?
|
626
|
+
command.query['force'] = force unless force.nil?
|
624
627
|
command.query['privateConnectionId'] = private_connection_id unless private_connection_id.nil?
|
625
628
|
command.query['requestId'] = request_id unless request_id.nil?
|
626
629
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datastream_v1
|
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:
|
11
|
+
date: 2023-02-12 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-datastream_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_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.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Datastream API V1
|