-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated API from documentation release
- Loading branch information
Auto Mation
committed
Oct 25, 2023
1 parent
0f29272
commit 118a45b
Showing
9 changed files
with
97 additions
and
22 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
25 changes: 25 additions & 0 deletions
25
api-specs/connect/types/connector/connector-search-paged-query-response.raml
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#%RAML 1.0 DataType | ||
(annotations.package): Connector | ||
displayName: ConnectorSearchPagedQueryResponse | ||
description: | | ||
[PagedQueryResult](/../api/general-concepts#pagedqueryresult) with results containing an array of [Connector](ctp:connect:type:Connector). | ||
properties: | ||
limit: | ||
type: number | ||
format: int64 | ||
description: The maximum number of Connectors returned. | ||
offset: | ||
type: number | ||
format: int64 | ||
description: The offset of the Connectors returned. | ||
count: | ||
type: number | ||
format: int64 | ||
description: The number of Connectors returned. | ||
total: | ||
type: number | ||
format: int64 | ||
description: The total number of Connectors matching the query. | ||
results: | ||
type: Connector[] | ||
description: Connectors matching the query. |
25 changes: 25 additions & 0 deletions
25
api-specs/connect/types/connector/connector-staged-paged-query-response.raml
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#%RAML 1.0 DataType | ||
(annotations.package): Connector | ||
displayName: ConnectorStagedPagedQueryResponse | ||
description: | | ||
[PagedQueryResult](/../api/general-concepts#pagedqueryresult) with results containing an array of [ConnectorStaged](ctp:connect:type:ConnectorStaged). | ||
properties: | ||
limit: | ||
type: number | ||
format: int64 | ||
description: The maximum number of the ConnectorStaged returned. | ||
offset: | ||
type: number | ||
format: int64 | ||
description: The offset of the ConnectorStaged returned. | ||
count: | ||
type: number | ||
format: int64 | ||
description: The number of ConnectorStaged returned. | ||
total: | ||
type: number | ||
format: int64 | ||
description: The total number of ConnectorStaged matching the query. | ||
results: | ||
type: ConnectorStaged[] | ||
description: ConnectorStaged matching the query. |
12 changes: 12 additions & 0 deletions
12
api-specs/connect/types/deployment/deployment-log-cursor-paged-query-response.raml
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#%RAML 1.0 DataType | ||
(annotations.package): Deployment | ||
displayName: DeploymentLogCursorPagedQueryResponse | ||
description: | | ||
A cursor paged query result containing an array of [DeploymentLog](ctp:connect:type:DeploymentLog). | ||
properties: | ||
data: | ||
type: DeploymentLog[] | ||
description: Array of DeploymentLog objects. | ||
next: | ||
type: string | ||
description: The next page token. |
25 changes: 25 additions & 0 deletions
25
api-specs/connect/types/deployment/deployment-paged-query-response.raml
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#%RAML 1.0 DataType | ||
(annotations.package): Deployment | ||
displayName: DeploymentPagedQueryResponse | ||
description: | | ||
[PagedQueryResult](/../api/general-concepts#pagedqueryresult) with results containing an array of [Deployment](ctp:connect:type:Deployment). | ||
properties: | ||
limit: | ||
type: number | ||
format: int64 | ||
description: The limit of the Deployments returned. | ||
offset: | ||
type: number | ||
format: int64 | ||
description: The offset of the Deployments returned. | ||
count: | ||
type: number | ||
format: int64 | ||
description: The number of Deployments returned. | ||
total: | ||
type: number | ||
format: int64 | ||
description: The total number of Deployments available. | ||
results: | ||
type: Deployment[] | ||
description: Deployments matching the query. |
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