Skip to content

Commit 57ee37d

Browse files
authored
fix: Generate CloudQuery Go API Client from spec.json (#297)
This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json`
1 parent 93d1444 commit 57ee37d

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

models.gen.go

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10128,6 +10128,12 @@
1012810128
}
1012910129
} ]
1013010130
},
10131+
"SyncRunTableProgress" : {
10132+
"additionalProperties" : {
10133+
"$ref" : "#/components/schemas/SyncRunTableProgress_value"
10134+
},
10135+
"description" : "Table-specific progress information for a sync run"
10136+
},
1013110137
"ConnectorIdentityResponseAWS" : {
1013210138
"additionalProperties" : false,
1013310139
"description" : "AWS connector identity response",
@@ -11423,6 +11429,9 @@
1142311429
"description" : "The total number of shards for this sync run",
1142411430
"format" : "int32",
1142511431
"type" : "integer"
11432+
},
11433+
"table_progress" : {
11434+
"$ref" : "#/components/schemas/SyncRunTableProgress"
1142611435
}
1142711436
},
1142811437
"required" : [ "errors", "rows", "warnings" ]
@@ -11656,6 +11665,21 @@
1165611665
}
1165711666
},
1165811667
"required" : [ "end", "start" ]
11668+
},
11669+
"SyncRunTableProgress_value" : {
11670+
"properties" : {
11671+
"errors" : {
11672+
"description" : "Number of errors for this table",
11673+
"format" : "int64",
11674+
"type" : "integer"
11675+
},
11676+
"rows" : {
11677+
"description" : "Number of rows processed for this table",
11678+
"format" : "int64",
11679+
"type" : "integer"
11680+
}
11681+
},
11682+
"required" : [ "errors", "rows" ]
1165911683
}
1166011684
},
1166111685
"securitySchemes" : {

0 commit comments

Comments
 (0)