Skip to content

Commit e65ae61

Browse files
authored
doc(Debezium): example titles
1 parent 26ad581 commit e65ae61

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

plugin-debezium-db2/src/main/java/io/kestra/plugin/debezium/db2/Capture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@Plugin(
2626
examples = {
2727
@Example(
28-
title = "Capture data from Db2 server."
28+
title = "Capture data from Db2 server.",
2929
full = true,
3030
code = """
3131
id: db2_capture

plugin-debezium-mongodb/src/main/java/io/kestra/plugin/debezium/mongodb/Capture.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
@Plugin(
2727
examples = {
2828
@Example(
29-
title = "Replica set connection",
29+
title = "Replica set connection.",
3030
full = true,
3131
code = """
3232
id: mongo_replica_connection
3333
namespace: company.team
3434
3535
tasks:
36-
- id: capture
36+
- id: capture
3737
type: io.kestra.plugin.debezium.mongodb.Capture
3838
snapshotMode: INITIAL
3939
connectionString: "mongodb://mongo_user:{{secret('MONGO_PASSWORD')}}@mongodb0.example.com:27017/?replicaSet=rs0"
4040
maxRecords: 100
4141
"""
4242
),
4343
@Example(
44-
title = "Sharded connection",
44+
title = "Sharded connection.",
4545
full = true,
4646
code = """
4747
id: mongo_sharded_connection
@@ -56,7 +56,7 @@
5656
"""
5757
),
5858
@Example(
59-
title = "Replica set SRV connection",
59+
title = "Replica set SRV connection.",
6060
full = true,
6161
code = """
6262
id: mongo_replica_srv
@@ -71,7 +71,7 @@
7171
"""
7272
),
7373
@Example(
74-
title = "Sharded SRV connection",
74+
title = "Sharded SRV connection.",
7575
full = true,
7676
code = """
7777
id: mongo

plugin-debezium-mongodb/src/main/java/io/kestra/plugin/debezium/mongodb/RealtimeTrigger.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@Plugin(
3030
examples = {
3131
@Example(
32-
title = "Sharded connection",
32+
title = "Sharded connection.",
3333
full = true,
3434
code = """
3535
id: debezium_mongodb
@@ -48,7 +48,7 @@
4848
"""
4949
),
5050
@Example(
51-
title = "Replica set connection",
51+
title = "Replica set connection.",
5252
full = true,
5353
code = """
5454
id: debezium_mongodb

plugin-debezium-mongodb/src/main/java/io/kestra/plugin/debezium/mongodb/Trigger.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
@Plugin(
3333
examples = {
3434
@Example(
35-
title = "Sharded connection",
35+
title = "Sharded connection.",
3636
full = true,
3737
code = """
3838
id: debezium_mongodb
@@ -51,7 +51,7 @@
5151
"""
5252
),
5353
@Example(
54-
title = "Replica set connection",
54+
title = "Replica set connection.",
5555
full = true,
5656
code = """
5757
id: debezium_mongodb

plugin-debezium-oracle/src/main/java/io/kestra/plugin/debezium/oracle/Capture.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@Plugin(
2626
examples = {
2727
@Example(
28-
title = "Non-container database (non-CDB)",
28+
title = "Non-container database (non-CDB).",
2929
full = true,
3030
code = """
3131
id: non_container_db
@@ -44,7 +44,7 @@
4444
"""
4545
),
4646
@Example(
47-
title = "Container database (CDB)",
47+
title = "Container database (CDB).",
4848
full = true,
4949
code = """
5050
id: container_db

plugin-debezium-oracle/src/main/java/io/kestra/plugin/debezium/oracle/Trigger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@Plugin(
3030
examples = {
3131
@Example(
32-
title = "Consume messages from Oracle db.",
32+
title = "Consume messages from Oracle DB periodically.",
3333
full = true,
3434
code = """
3535
id: oracle_trigger

plugin-debezium-postgres/src/main/java/io/kestra/plugin/debezium/postgres/Capture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@Plugin(
2525
examples = {
2626
@Example(
27-
title = "Capture data from PostgreSQL server",
27+
title = "Capture data from PostgreSQL server.",
2828
full = true,
2929
code = """
3030
id: pg_capture

plugin-debezium-postgres/src/main/java/io/kestra/plugin/debezium/postgres/Trigger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
examples = {
3131
@Example(
3232
full = true,
33-
title = "",
33+
title = "Consume a message from a PostgreSQL database via change data capture periodically.",
3434
code = """"
3535
id: pg_trigger
3636
namespace: company.team

0 commit comments

Comments
 (0)