Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Generate CloudQuery Go API Client from spec.json #150

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion models.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -7889,23 +7889,26 @@
"description": "The number of rows used by the plugin in the calendar month."
},
"usd": {
"deprecated": true,
"type": "string",
"example": "43.95",
"description": "The USD amount used by the plugin in the calendar month, rounded to two decimal places.",
"x-go-name": "USD"
},
"remaining_usd": {
"deprecated": true,
"type": "string",
"example": "56.05",
"description": "The remaining USD amount in the plugin's quota for the calendar month.",
"x-go-name": "RemainingUSD"
},
"remaining_rows": {
"example": 1000000,
"deprecated": true,
"example": 1,
"type": "integer",
"format": "int64",
"minimum": 0,
"description": "The estimated number of rows remaining in the plugin's quota for the calendar month at the current price per row. This includes both free and paid rows up to the monthly limit defined for the plugin."
"description": "Deprecated - this field used to contain the estimated remaining rows but now returns 1 to indicate rows are remaining or 0 if there are no more remaining rows."
}
}
},
Expand Down
Loading