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 #192

Merged
merged 1 commit into from
Jul 4, 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
4 changes: 2 additions & 2 deletions models.gen.go

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

8 changes: 4 additions & 4 deletions spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6561,7 +6561,7 @@
"type" : "integer"
}
},
"required" : [ "category", "display_name", "kind", "logo", "name", "public", "short_description", "team_name" ]
"required" : [ "category", "display_name", "kind", "name", "public", "short_description", "team_name" ]
},
"PluginReleaseStageUpdate" : {
"description" : "Official plugins can go through three release stages: Coming Soon, Preview, and GA.\nThe Coming Soon stage is for plugins that are not yet ready for Preview, but users can subscribe to be notified when they are ready.\nBoth Preview and GA plugins follow semantic versioning. The main differences between the two stages are:\nPreview plugins are still experimental and may have frequent breaking changes. Preview plugins might get deprecated due to lack of usage. Long Term Support with community Discord and bug fixes is only guaranteed for GA plugins. Premium plugins are often discounted or free during the Preview stage.",
Expand Down Expand Up @@ -6604,7 +6604,7 @@
"logo" : {
"description" : "URL to the plugin's logo. This will be shown in the CloudQuery Hub.",
"example" : "https://storage.googleapis.com/cq-cloud-images/9ac4cb31-e971-4879-8619-87dc22b0f9e8",
"pattern" : "^https:\\/\\/storage\\.googleapis\\.com\\/cq-cloud-images\\/[a-z0-9-]+$",
"pattern" : "^(https:\\/\\/storage\\.googleapis\\.com\\/cq-cloud-images\\/[a-z0-9-]+)?$",
"type" : "string"
},
"public" : {
Expand Down Expand Up @@ -7302,7 +7302,7 @@
"type" : "boolean"
}
},
"required" : [ "addon_format", "addon_type", "category", "display_name", "logo", "name", "public", "short_description", "team_name", "tier" ],
"required" : [ "addon_format", "addon_type", "category", "display_name", "name", "public", "short_description", "team_name", "tier" ],
"title" : "CloudQuery Addon"
},
"AddonUpdate" : {
Expand Down Expand Up @@ -7348,7 +7348,7 @@
},
"logo" : {
"example" : "https://storage.googleapis.com/cq-cloud-images/9ac4cb31-e971-4879-8619-87dc22b0f98e",
"pattern" : "^https:\\/\\/storage\\.googleapis\\.com\\/cq-cloud-images\\/[a-z0-9-]+$",
"pattern" : "^(https:\\/\\/storage\\.googleapis\\.com\\/cq-cloud-images\\/[a-z0-9-]+)?$",
"type" : "string"
},
"public" : {
Expand Down
Loading