Skip to content

Commit fc75340

Browse files
feat(datastream): update the api
#### datastream:v1 The following keys were added: - schemas.MysqlGtidPosition (Total Keys: 3) - schemas.SpecificStartPosition.properties.mysqlGtidPosition.$ref (Total Keys: 1)
1 parent e08d784 commit fc75340

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

docs/dyn/datastream_v1.projects.locations.streams.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1889,6 +1889,9 @@ <h3>Method Details</h3>
18891889
&quot;nextAvailableStartPosition&quot;: { # CDC strategy to resume replication from the next available position in the source. # Optional. Resume replication from the next available position in the source.
18901890
},
18911891
&quot;specificStartPosition&quot;: { # CDC strategy to start replicating from a specific position in the source. # Optional. Start replicating from a specific position in the source.
1892+
&quot;mysqlGtidPosition&quot;: { # MySQL GTID position # MySQL GTID set to start replicating from.
1893+
&quot;gtidSet&quot;: &quot;A String&quot;, # Required. The gtid set to start replication from.
1894+
},
18921895
&quot;mysqlLogPosition&quot;: { # MySQL log position # MySQL specific log position to start replicating from.
18931896
&quot;logFile&quot;: &quot;A String&quot;, # Required. The binary log file name.
18941897
&quot;logPosition&quot;: 42, # Optional. The position within the binary log file. Default is head of file.

googleapiclient/discovery_cache/documents/datastream.v1.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@
12501250
}
12511251
}
12521252
},
1253-
"revision": "20250122",
1253+
"revision": "20250202",
12541254
"rootUrl": "https://datastream.googleapis.com/",
12551255
"schemas": {
12561256
"AppendOnly": {
@@ -2093,6 +2093,17 @@
20932093
},
20942094
"type": "object"
20952095
},
2096+
"MysqlGtidPosition": {
2097+
"description": "MySQL GTID position",
2098+
"id": "MysqlGtidPosition",
2099+
"properties": {
2100+
"gtidSet": {
2101+
"description": "Required. The gtid set to start replication from.",
2102+
"type": "string"
2103+
}
2104+
},
2105+
"type": "object"
2106+
},
20962107
"MysqlLogPosition": {
20972108
"description": "MySQL log position",
20982109
"id": "MysqlLogPosition",
@@ -3048,6 +3059,10 @@
30483059
"description": "CDC strategy to start replicating from a specific position in the source.",
30493060
"id": "SpecificStartPosition",
30503061
"properties": {
3062+
"mysqlGtidPosition": {
3063+
"$ref": "MysqlGtidPosition",
3064+
"description": "MySQL GTID set to start replicating from."
3065+
},
30513066
"mysqlLogPosition": {
30523067
"$ref": "MysqlLogPosition",
30533068
"description": "MySQL specific log position to start replicating from."

0 commit comments

Comments
 (0)