google-apis-datastream_v1 0.54.0 → 0.56.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: 620d21e1e165925a2ba375552b1ddfa48f955ac5ed1e3df90b34d119e3a4271d
|
4
|
+
data.tar.gz: 99e946efe69dd3eef9eeae6c151fb4af57e2561bacce0c629424e0fed23c8819
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e787cc51eea8ff5a8a2d2d1884674a8943b3a1c4f6dc1118de6f7191c9b80426077320ddbad491c367da643dfe77370910039e29dde0e85ce2cdb42ff92da43f
|
7
|
+
data.tar.gz: 6d6c0c92469af8d170a982729e888f17c4f5511ced55ba0b88a3206ed8795e1d74af90f72c9433e9fd81f608afd139db1f0e047ccc237d7f51a611a4b49d50f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datastream_v1
|
2
2
|
|
3
|
+
### v0.56.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250827
|
6
|
+
|
7
|
+
### v0.55.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250817
|
10
|
+
|
3
11
|
### v0.54.0 (2025-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250722
|
@@ -1331,6 +1331,25 @@ module Google
|
|
1331
1331
|
end
|
1332
1332
|
end
|
1333
1333
|
|
1334
|
+
# MongoDB change stream position
|
1335
|
+
class MongodbChangeStreamPosition
|
1336
|
+
include Google::Apis::Core::Hashable
|
1337
|
+
|
1338
|
+
# Required. The timestamp (in epoch seconds) to start change stream from.
|
1339
|
+
# Corresponds to the JSON property `startTime`
|
1340
|
+
# @return [String]
|
1341
|
+
attr_accessor :start_time
|
1342
|
+
|
1343
|
+
def initialize(**args)
|
1344
|
+
update!(**args)
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# Update properties of this object
|
1348
|
+
def update!(**args)
|
1349
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
1350
|
+
end
|
1351
|
+
end
|
1352
|
+
|
1334
1353
|
# MongoDB Cluster structure.
|
1335
1354
|
class MongodbCluster
|
1336
1355
|
include Google::Apis::Core::Hashable
|
@@ -3488,6 +3507,11 @@ module Google
|
|
3488
3507
|
class SpecificStartPosition
|
3489
3508
|
include Google::Apis::Core::Hashable
|
3490
3509
|
|
3510
|
+
# MongoDB change stream position
|
3511
|
+
# Corresponds to the JSON property `mongodbChangeStreamPosition`
|
3512
|
+
# @return [Google::Apis::DatastreamV1::MongodbChangeStreamPosition]
|
3513
|
+
attr_accessor :mongodb_change_stream_position
|
3514
|
+
|
3491
3515
|
# MySQL GTID position
|
3492
3516
|
# Corresponds to the JSON property `mysqlGtidPosition`
|
3493
3517
|
# @return [Google::Apis::DatastreamV1::MysqlGtidPosition]
|
@@ -3514,6 +3538,7 @@ module Google
|
|
3514
3538
|
|
3515
3539
|
# Update properties of this object
|
3516
3540
|
def update!(**args)
|
3541
|
+
@mongodb_change_stream_position = args[:mongodb_change_stream_position] if args.key?(:mongodb_change_stream_position)
|
3517
3542
|
@mysql_gtid_position = args[:mysql_gtid_position] if args.key?(:mysql_gtid_position)
|
3518
3543
|
@mysql_log_position = args[:mysql_log_position] if args.key?(:mysql_log_position)
|
3519
3544
|
@oracle_scn_position = args[:oracle_scn_position] if args.key?(:oracle_scn_position)
|
@@ -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.56.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 = "20250827"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,6 +274,12 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class MongodbChangeStreamPosition
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class MongodbCluster
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
@@ -1219,6 +1225,13 @@ module Google
|
|
1219
1225
|
end
|
1220
1226
|
end
|
1221
1227
|
|
1228
|
+
class MongodbChangeStreamPosition
|
1229
|
+
# @private
|
1230
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1231
|
+
property :start_time, as: 'startTime'
|
1232
|
+
end
|
1233
|
+
end
|
1234
|
+
|
1222
1235
|
class MongodbCluster
|
1223
1236
|
# @private
|
1224
1237
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1848,6 +1861,8 @@ module Google
|
|
1848
1861
|
class SpecificStartPosition
|
1849
1862
|
# @private
|
1850
1863
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1864
|
+
property :mongodb_change_stream_position, as: 'mongodbChangeStreamPosition', class: Google::Apis::DatastreamV1::MongodbChangeStreamPosition, decorator: Google::Apis::DatastreamV1::MongodbChangeStreamPosition::Representation
|
1865
|
+
|
1851
1866
|
property :mysql_gtid_position, as: 'mysqlGtidPosition', class: Google::Apis::DatastreamV1::MysqlGtidPosition, decorator: Google::Apis::DatastreamV1::MysqlGtidPosition::Representation
|
1852
1867
|
|
1853
1868
|
property :mysql_log_position, as: 'mysqlLogPosition', class: Google::Apis::DatastreamV1::MysqlLogPosition, decorator: Google::Apis::DatastreamV1::MysqlLogPosition::Representation
|
@@ -123,8 +123,8 @@ module Google
|
|
123
123
|
# @param [String] name
|
124
124
|
# The resource that owns the locations collection, if applicable.
|
125
125
|
# @param [Array<String>, String] extra_location_types
|
126
|
-
# Optional.
|
127
|
-
#
|
126
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
127
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
128
128
|
# @param [String] filter
|
129
129
|
# A filter to narrow down results to a preferred subset. The filtering language
|
130
130
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.56.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.56.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:
|