google-apis-datastream_v1 0.67.0 → 0.68.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: 7f04cdb2ecb8dba69281b4daef270789b20552f90ca02deb26c338fb638f91ce
|
|
4
|
+
data.tar.gz: ef1cb12d04dee49a79b3c806ca68513b187ca45104445902697d2fbdc21a6f43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6623dc6ab7e9525c8593c7a3ef948bca194cef0045be216d3dcdad5254b2bb6eb76bd7ddfacf6714125b557177b09c4afb1b0d78fcd3ad92cd7f283f7388f3a1
|
|
7
|
+
data.tar.gz: 2da86360a095d1f3deacd469d3077202b7fd86494bac548e9c88f873495b074f13521b14c0759d87a730ad74066d62befd21ecfd035167fad1c7a71b8e3c482b
|
data/CHANGELOG.md
CHANGED
|
@@ -4282,6 +4282,27 @@ module Google
|
|
|
4282
4282
|
end
|
|
4283
4283
|
end
|
|
4284
4284
|
|
|
4285
|
+
# Represents a position in a Spanner change stream from which to start
|
|
4286
|
+
# replicating.
|
|
4287
|
+
class SpannerChangeStreamPosition
|
|
4288
|
+
include Google::Apis::Core::Hashable
|
|
4289
|
+
|
|
4290
|
+
# Required. The timestamp to start change stream queries from. The timestamp
|
|
4291
|
+
# must be a positive value.
|
|
4292
|
+
# Corresponds to the JSON property `startTime`
|
|
4293
|
+
# @return [String]
|
|
4294
|
+
attr_accessor :start_time
|
|
4295
|
+
|
|
4296
|
+
def initialize(**args)
|
|
4297
|
+
update!(**args)
|
|
4298
|
+
end
|
|
4299
|
+
|
|
4300
|
+
# Update properties of this object
|
|
4301
|
+
def update!(**args)
|
|
4302
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
4303
|
+
end
|
|
4304
|
+
end
|
|
4305
|
+
|
|
4285
4306
|
# Spanner column.
|
|
4286
4307
|
class SpannerColumn
|
|
4287
4308
|
include Google::Apis::Core::Hashable
|
|
@@ -4530,6 +4551,12 @@ module Google
|
|
|
4530
4551
|
# @return [Google::Apis::DatastreamV1::OracleScnPosition]
|
|
4531
4552
|
attr_accessor :oracle_scn_position
|
|
4532
4553
|
|
|
4554
|
+
# Represents a position in a Spanner change stream from which to start
|
|
4555
|
+
# replicating.
|
|
4556
|
+
# Corresponds to the JSON property `spannerChangeStreamPosition`
|
|
4557
|
+
# @return [Google::Apis::DatastreamV1::SpannerChangeStreamPosition]
|
|
4558
|
+
attr_accessor :spanner_change_stream_position
|
|
4559
|
+
|
|
4533
4560
|
# SQL Server LSN position
|
|
4534
4561
|
# Corresponds to the JSON property `sqlServerLsnPosition`
|
|
4535
4562
|
# @return [Google::Apis::DatastreamV1::SqlServerLsnPosition]
|
|
@@ -4545,6 +4572,7 @@ module Google
|
|
|
4545
4572
|
@mysql_gtid_position = args[:mysql_gtid_position] if args.key?(:mysql_gtid_position)
|
|
4546
4573
|
@mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
|
|
4547
4574
|
@oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
|
|
4575
|
+
@spanner_change_stream_position = args[:spanner_change_stream_position] if args.key?(:spanner_change_stream_position)
|
|
4548
4576
|
@sql_server_lsn_position = args[:sql_server_lsn_position] if args.key?(:sql_server_lsn_position)
|
|
4549
4577
|
end
|
|
4550
4578
|
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.68.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260503"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -766,6 +766,12 @@ module Google
|
|
|
766
766
|
include Google::Apis::Core::JsonObjectSupport
|
|
767
767
|
end
|
|
768
768
|
|
|
769
|
+
class SpannerChangeStreamPosition
|
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
771
|
+
|
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
773
|
+
end
|
|
774
|
+
|
|
769
775
|
class SpannerColumn
|
|
770
776
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
771
777
|
|
|
@@ -2251,6 +2257,13 @@ module Google
|
|
|
2251
2257
|
end
|
|
2252
2258
|
end
|
|
2253
2259
|
|
|
2260
|
+
class SpannerChangeStreamPosition
|
|
2261
|
+
# @private
|
|
2262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2263
|
+
property :start_time, as: 'startTime'
|
|
2264
|
+
end
|
|
2265
|
+
end
|
|
2266
|
+
|
|
2254
2267
|
class SpannerColumn
|
|
2255
2268
|
# @private
|
|
2256
2269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2330,6 +2343,8 @@ module Google
|
|
|
2330
2343
|
|
|
2331
2344
|
property :oracle_scn_position, as: 'oracleScnPosition', class: Google::Apis::DatastreamV1::OracleScnPosition, decorator: Google::Apis::DatastreamV1::OracleScnPosition::Representation
|
|
2332
2345
|
|
|
2346
|
+
property :spanner_change_stream_position, as: 'spannerChangeStreamPosition', class: Google::Apis::DatastreamV1::SpannerChangeStreamPosition, decorator: Google::Apis::DatastreamV1::SpannerChangeStreamPosition::Representation
|
|
2347
|
+
|
|
2333
2348
|
property :sql_server_lsn_position, as: 'sqlServerLsnPosition', class: Google::Apis::DatastreamV1::SqlServerLsnPosition, decorator: Google::Apis::DatastreamV1::SqlServerLsnPosition::Representation
|
|
2334
2349
|
|
|
2335
2350
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.68.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.68.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|