google-apis-datastream_v1 0.18.0 → 0.20.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: 865d18897fbc2bf6ca05a71eeea172384a1c6f4735afb133acf903ed8f6d13f7
|
4
|
+
data.tar.gz: 131f9c0872377fb5f531bc61b5ee8779e3947f84ae29c6d3fb310f07c0e8776f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3370fa0f5ba18e788611a083e47f90cdc7565fc81bb0c02d977a9b87c97bc82ebacf262aaee11acffb2a3a076337edcd21a5714c481693a431aeab533f74cdb7
|
7
|
+
data.tar.gz: 8e999755f79cb989564155cd3fdc56abaf08fc2882152f04a2a585e87e29c9b0520308ebe527f6bb36c87489894f90040bbe0c98e903ba73dca60324fb7a5d0f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.20.0 (2023-02-26)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.12.0
|
6
|
+
|
7
|
+
### v0.19.0 (2023-02-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230201
|
10
|
+
* Regenerated using generator version 0.11.1
|
11
|
+
|
3
12
|
### v0.18.0 (2022-12-08)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221128
|
@@ -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
|
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
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
|
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.20.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-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.20.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
|