Skip to content

Commit

Permalink
feat(datastream): update the api
Browse files Browse the repository at this point in the history
#### datastream:v1

The following keys were added:
- schemas.OracleScnPosition (Total Keys: 4)
- schemas.SpecificStartPosition.properties.oracleScnPosition.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 16, 2024
1 parent 06bf8b4 commit be20b4e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/dyn/datastream_v1.projects.locations.streams.html
Original file line number Diff line number Diff line change
Expand Up @@ -1493,6 +1493,9 @@ <h3>Method Details</h3>
&quot;logFile&quot;: &quot;A String&quot;, # Required. The binary log file name.
&quot;logPosition&quot;: 42, # Optional. The position within the binary log file. Default is head of file.
},
&quot;oracleScnPosition&quot;: { # Oracle SCN position # Oracle specific log position to start replicating from.
&quot;scn&quot;: &quot;A String&quot;, # Required. SCN number from where Logs will be read
},
},
},
}
Expand Down
18 changes: 17 additions & 1 deletion googleapiclient/discovery_cache/documents/datastream.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@
}
}
},
"revision": "20231206",
"revision": "20240103",
"rootUrl": "https://datastream.googleapis.com/",
"schemas": {
"AvroFileFormat": {
Expand Down Expand Up @@ -2372,6 +2372,18 @@
},
"type": "object"
},
"OracleScnPosition": {
"description": "Oracle SCN position",
"id": "OracleScnPosition",
"properties": {
"scn": {
"description": "Required. SCN number from where Logs will be read",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"OracleSourceConfig": {
"description": "Oracle data source configuration",
"id": "OracleSourceConfig",
Expand Down Expand Up @@ -2805,6 +2817,10 @@
"mysqlLogPosition": {
"$ref": "MysqlLogPosition",
"description": "MySQL specific log position to start replicating from."
},
"oracleScnPosition": {
"$ref": "OracleScnPosition",
"description": "Oracle specific log position to start replicating from."
}
},
"type": "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@
}
}
},
"revision": "20231206",
"revision": "20240103",
"rootUrl": "https://datastream.googleapis.com/",
"schemas": {
"AvroFileFormat": {
Expand Down

0 comments on commit be20b4e

Please sign in to comment.