-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(all): introduce new namespace endpoints
- Loading branch information
Showing
12 changed files
with
251 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
// API config injected from common configuration. | ||
host: "api.instill.tech"; | ||
host: "api.instill.tech" | ||
external_docs: { | ||
url: "https://www.instill.tech/docs"; | ||
description: "More about Instill AI"; | ||
}; | ||
schemes: HTTPS; | ||
schemes: HTTP; | ||
consumes: "application/json"; | ||
produces: "application/json"; | ||
url: "https://www.instill.tech/docs" | ||
description: "More about Instill AI" | ||
} | ||
schemes: HTTPS | ||
schemes: HTTP | ||
consumes: "application/json" | ||
produces: "application/json" | ||
security_definitions: { | ||
security: { | ||
key: "Bearer"; | ||
key: "Bearer" | ||
value: { | ||
type: TYPE_API_KEY; | ||
in: IN_HEADER; | ||
name: "Authorization"; | ||
description: "Enter the token with the `Bearer ` prefix, e.g. `Bearer abcde12345`"; | ||
type: TYPE_API_KEY | ||
in: IN_HEADER | ||
name: "Authorization" | ||
description: "Enter the token with the `Bearer ` prefix, e.g. `Bearer abcde12345`" | ||
extensions: { | ||
key: "x-default"; | ||
value {string_value: "Bearer instill_sk_***"}; | ||
key: "x-default" | ||
value: {string_value: "Bearer instill_sk_***"} | ||
} | ||
} | ||
} | ||
} | ||
security: { | ||
security_requirement: { | ||
key: "Bearer"; | ||
value: {}; | ||
key: "Bearer" | ||
value: {} | ||
} | ||
} | ||
responses: { | ||
key: "401"; | ||
value: {description: "Returned when the client credentials are not valid."}; | ||
} | ||
key: "401" | ||
value: {description: "Returned when the client credentials are not valid."} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// API info injected from common configuration. | ||
version: "v0.36.0-beta"; | ||
version: "v0.36.0-beta" | ||
contact: { | ||
name: "Instill AI"; | ||
url: "https://github.com/instill-ai"; | ||
email: "[email protected]"; | ||
}; | ||
name: "Instill AI" | ||
url: "https://github.com/instill-ai" | ||
email: "[email protected]" | ||
} | ||
license: { | ||
name: "Elastic License 2.0 (ELv2)"; | ||
url: "https://github.com/instill-ai/protobufs/blob/main/LICENSE"; | ||
}; | ||
name: "Elastic License 2.0 (ELv2)" | ||
url: "https://github.com/instill-ai/protobufs/blob/main/LICENSE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.