Skip to content

Commit 0406903

Browse files
authoredFeb 26, 2025··
fix: Generate CloudQuery Go API Client from spec.json (#276)
This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json`
1 parent aeebd1d commit 0406903

File tree

3 files changed

+152
-0
lines changed

3 files changed

+152
-0
lines changed
 

‎client.gen.go

+118
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎models.gen.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎spec.json

+31
Original file line numberDiff line numberDiff line change
@@ -6505,6 +6505,32 @@
65056505
"tags" : [ "platform" ],
65066506
"x-internal" : true
65076507
}
6508+
},
6509+
"/platform/flags" : {
6510+
"get" : {
6511+
"description" : "Get platform feature flags",
6512+
"operationId" : "GetPlatformFlags",
6513+
"responses" : {
6514+
"200" : {
6515+
"content" : {
6516+
"application/json" : {
6517+
"schema" : {
6518+
"$ref" : "#/components/schemas/PlatformFlags"
6519+
}
6520+
}
6521+
},
6522+
"description" : "Response"
6523+
},
6524+
"401" : {
6525+
"$ref" : "#/components/responses/RequiresAuthentication"
6526+
},
6527+
"500" : {
6528+
"$ref" : "#/components/responses/InternalError"
6529+
}
6530+
},
6531+
"security" : [ ],
6532+
"tags" : [ "platform" ]
6533+
}
65086534
}
65096535
},
65106536
"components" : {
@@ -10298,6 +10324,11 @@
1029810324
},
1029910325
"required" : [ "base_url", "return_url" ]
1030010326
},
10327+
"PlatformFlags" : {
10328+
"additionalProperties" : false,
10329+
"description" : "A map of feature flags for the Platform",
10330+
"type" : "object"
10331+
},
1030110332
"UploadImage_request" : {
1030210333
"properties" : {
1030310334
"content_type" : {

0 commit comments

Comments
 (0)
Please sign in to comment.