google-apis-datastream_v1 0.12.0 → 0.13.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: 959a37570594f158785057ab4fbfd81d74572ee93c5b7c6706286ebb54db99ad
|
4
|
+
data.tar.gz: 45fcb353bb24201394bab8f10756674efa97906e9f6c6f2e7c9eeb5e1fec7152
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f05bcb525a9f9657fae81462710bac9b10254adcb51c693228f2865b5589aacfa970323a44c2703154b44fccc915c623a1bc440891c92d62ecd42387b23210c2
|
7
|
+
data.tar.gz: 8b5382644767d796a02cd2cdef3564adf6d1193b6fd87f3909846e1731934c6a5c402cb89cad67e8b9acdf0967b5355305d9ba4a34c4299608f915df48653fd2
|
data/CHANGELOG.md
CHANGED
@@ -1003,6 +1003,12 @@ module Google
|
|
1003
1003
|
# @return [Google::Apis::DatastreamV1::MysqlRdbms]
|
1004
1004
|
attr_accessor :include_objects
|
1005
1005
|
|
1006
|
+
# Maximum number of concurrent CDC tasks. The number should be non negative. If
|
1007
|
+
# not set (or set to 0), the system's default value will be used.
|
1008
|
+
# Corresponds to the JSON property `maxConcurrentCdcTasks`
|
1009
|
+
# @return [Fixnum]
|
1010
|
+
attr_accessor :max_concurrent_cdc_tasks
|
1011
|
+
|
1006
1012
|
def initialize(**args)
|
1007
1013
|
update!(**args)
|
1008
1014
|
end
|
@@ -1011,6 +1017,7 @@ module Google
|
|
1011
1017
|
def update!(**args)
|
1012
1018
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1013
1019
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1020
|
+
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
1014
1021
|
end
|
1015
1022
|
end
|
1016
1023
|
|
@@ -1430,6 +1437,17 @@ module Google
|
|
1430
1437
|
# @return [Google::Apis::DatastreamV1::OracleRdbms]
|
1431
1438
|
attr_accessor :include_objects
|
1432
1439
|
|
1440
|
+
# Maximum number of concurrent CDC tasks. The number should be non negative. If
|
1441
|
+
# not set (or set to 0), the system's default value will be used.
|
1442
|
+
# Corresponds to the JSON property `maxConcurrentCdcTasks`
|
1443
|
+
# @return [Fixnum]
|
1444
|
+
attr_accessor :max_concurrent_cdc_tasks
|
1445
|
+
|
1446
|
+
# Configuration to stream large object values.
|
1447
|
+
# Corresponds to the JSON property `streamLargeObjects`
|
1448
|
+
# @return [Google::Apis::DatastreamV1::StreamLargeObjects]
|
1449
|
+
attr_accessor :stream_large_objects
|
1450
|
+
|
1433
1451
|
def initialize(**args)
|
1434
1452
|
update!(**args)
|
1435
1453
|
end
|
@@ -1439,6 +1457,8 @@ module Google
|
|
1439
1457
|
@drop_large_objects = args[:drop_large_objects] if args.key?(:drop_large_objects)
|
1440
1458
|
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
1441
1459
|
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
1460
|
+
@max_concurrent_cdc_tasks = args[:max_concurrent_cdc_tasks] if args.key?(:max_concurrent_cdc_tasks)
|
1461
|
+
@stream_large_objects = args[:stream_large_objects] if args.key?(:stream_large_objects)
|
1442
1462
|
end
|
1443
1463
|
end
|
1444
1464
|
|
@@ -1869,6 +1889,19 @@ module Google
|
|
1869
1889
|
end
|
1870
1890
|
end
|
1871
1891
|
|
1892
|
+
# Configuration to stream large object values.
|
1893
|
+
class StreamLargeObjects
|
1894
|
+
include Google::Apis::Core::Hashable
|
1895
|
+
|
1896
|
+
def initialize(**args)
|
1897
|
+
update!(**args)
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# Update properties of this object
|
1901
|
+
def update!(**args)
|
1902
|
+
end
|
1903
|
+
end
|
1904
|
+
|
1872
1905
|
# A specific stream object (e.g a specific DB table).
|
1873
1906
|
class StreamObject
|
1874
1907
|
include Google::Apis::Core::Hashable
|
@@ -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.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220711"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -352,6 +352,12 @@ module Google
|
|
352
352
|
include Google::Apis::Core::JsonObjectSupport
|
353
353
|
end
|
354
354
|
|
355
|
+
class StreamLargeObjects
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
355
361
|
class StreamObject
|
356
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
363
|
|
@@ -693,6 +699,7 @@ module Google
|
|
693
699
|
|
694
700
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::MysqlRdbms, decorator: Google::Apis::DatastreamV1::MysqlRdbms::Representation
|
695
701
|
|
702
|
+
property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
|
696
703
|
end
|
697
704
|
end
|
698
705
|
|
@@ -805,6 +812,9 @@ module Google
|
|
805
812
|
|
806
813
|
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::OracleRdbms, decorator: Google::Apis::DatastreamV1::OracleRdbms::Representation
|
807
814
|
|
815
|
+
property :max_concurrent_cdc_tasks, as: 'maxConcurrentCdcTasks'
|
816
|
+
property :stream_large_objects, as: 'streamLargeObjects', class: Google::Apis::DatastreamV1::StreamLargeObjects, decorator: Google::Apis::DatastreamV1::StreamLargeObjects::Representation
|
817
|
+
|
808
818
|
end
|
809
819
|
end
|
810
820
|
|
@@ -940,6 +950,12 @@ module Google
|
|
940
950
|
end
|
941
951
|
end
|
942
952
|
|
953
|
+
class StreamLargeObjects
|
954
|
+
# @private
|
955
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
943
959
|
class StreamObject
|
944
960
|
# @private
|
945
961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.13.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: 2022-07-
|
11
|
+
date: 2022-07-25 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.13.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: []
|