Skip to content

Commit a5938bb

Browse files
authored
Merge pull request #23933 from jarqvi/fix/api-docs-links
Update api docs links
2 parents ccd16bb + e42100b commit a5938bb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/reference/api/extensions-sdk/Docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const containers = await ddClient.docker.listContainers();
8686

8787
| Name | Type | Description |
8888
| :------ | :------ | :------ |
89-
| `options?` | `any` | (Optional). A JSON like `{ "all": true, "limit": 10, "size": true, "filters": JSON.stringify({ status: ["exited"] }), }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/engine/api/v1.41/#operation/ContainerList). |
89+
| `options?` | `any` | (Optional). A JSON like `{ "all": true, "limit": 10, "size": true, "filters": JSON.stringify({ status: ["exited"] }), }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/reference/api/engine/version/v1.52/#operation/ContainerList). |
9090

9191
#### Returns
9292

@@ -108,7 +108,7 @@ const images = await ddClient.docker.listImages();
108108

109109
| Name | Type | Description |
110110
| :------ | :------ | :------ |
111-
| `options?` | `any` | (Optional). A JSON like `{ "all": true, "filters": JSON.stringify({ dangling: ["true"] }), "digests": true * }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/engine/api/v1.41/#tag/Image). |
111+
| `options?` | `any` | (Optional). A JSON like `{ "all": true, "filters": JSON.stringify({ dangling: ["true"] }), "digests": true * }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/reference/api/engine/version/v1.52/#tag/Image). |
112112

113113
#### Returns
114114

content/reference/api/extensions-sdk/DockerDesktopClient.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const containers = await window.ddClient.listContainers();
9696

9797
| Name | Type | Description |
9898
| :------ | :------ | :------ |
99-
| `options` | `never` | (Optional). A JSON like `{ "all": true, "limit": 10, "size": true, "filters": JSON.stringify({ status: ["exited"] }), }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/engine/api/v1.41/#operation/ContainerList). |
99+
| `options` | `never` | (Optional). A JSON like `{ "all": true, "limit": 10, "size": true, "filters": JSON.stringify({ status: ["exited"] }), }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/reference/api/engine/version/v1.52/#operation/ContainerList). |
100100

101101
#### Returns
102102

@@ -128,7 +128,7 @@ const images = await window.ddClient.listImages();
128128

129129
| Name | Type | Description |
130130
| :------ | :------ | :------ |
131-
| `options` | `never` | (Optional). A JSON like `{ "all": true, "filters": JSON.stringify({ dangling: ["true"] }), "digests": true }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/engine/api/v1.41/#tag/Image). |
131+
| `options` | `never` | (Optional). A JSON like `{ "all": true, "filters": JSON.stringify({ dangling: ["true"] }), "digests": true }` For more information about the different properties see [the Docker API endpoint documentation](https://docs.docker.com/reference/api/engine/version/v1.52/#tag/Image). |
132132

133133
#### Returns
134134

0 commit comments

Comments
 (0)