Update Extensions SDK API ref with `viewContainerTerminal` (#16608)

* Update Extensions SDK API ref with viewContainerTerminal

* Add since 0.3.4
This commit is contained in:
Felipe Cruz Martinez 2023-02-27 17:15:55 +01:00 committed by GitHub
parent 850fde24e2
commit ac8d5c7953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -100,6 +100,34 @@ A promise that fails if the container doesn't exist.
___
### viewContainerTerminal
**viewContainerTerminal**(`id`): `Promise`<`void`\>
Navigate to the container terminal window in Docker Desktop.
```typescript
await ddClient.desktopUI.navigate.viewContainerTerminal(id)
```
**`Since`**
0.3.4
#### Parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `id` | `string` | The full container id, e.g. `46b57e400d801762e9e115734bf902a2450d89669d85881058a46136520aca28`. You can use the `--no-trunc` flag as part of the `docker ps` command to display the full container id. |
#### Returns
`Promise`<`void`\>
A promise that fails if the container doesn't exist.
___
### viewContainerStats
**viewContainerStats**(`id`): `Promise`<`void`\>