diff --git a/src/pages/docs/octopus-rest-api/cli/index.md b/src/pages/docs/octopus-rest-api/cli/index.md index 61b6087168..ae305855ea 100644 --- a/src/pages/docs/octopus-rest-api/cli/index.md +++ b/src/pages/docs/octopus-rest-api/cli/index.md @@ -58,6 +58,9 @@ The Octopus CLI is built and maintained by the Octopus Deploy team, but it is al - **[octopus build-information view](/docs/octopus-rest-api/cli/octopus-build-information-view)**: View a build information. - **[octopus channel](/docs/octopus-rest-api/cli/octopus-channel)**: Manage channels. - **[octopus channel create](/docs/octopus-rest-api/cli/octopus-channel-create)**: Create a channel. +- **[octopus channel delete](/docs/octopus-rest-api/cli/octopus-channel-delete)**: Delete a channel. +- **[octopus channel list](/docs/octopus-rest-api/cli/octopus-channel-list)**: List channels. +- **[octopus channel view](/docs/octopus-rest-api/cli/octopus-channel-view)**: View a channel. - **[octopus config](/docs/octopus-rest-api/cli/octopus-config)**: Manage CLI configuration. - **[octopus config get](/docs/octopus-rest-api/cli/octopus-config-get)**: Gets the value of config key for Octopus CLI. - **[octopus config list](/docs/octopus-rest-api/cli/octopus-config-list)**: List values from config file. diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-channel-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-channel-delete.mdx new file mode 100644 index 0000000000..680c7da018 --- /dev/null +++ b/src/pages/docs/octopus-rest-api/cli/octopus-channel-delete.mdx @@ -0,0 +1,47 @@ +--- +layout: src/layouts/Default.astro +pubDate: 2023-01-01 +modDate: 2026-08-19 +title: octopus channel delete +description: Delete a channel +navOrder: 38 +--- +import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; + +Delete a channel in Octopus Deploy + +```text +Usage: + octopus channel delete { | } [flags] + +Aliases: + delete, del, rm, remove + +Flags: + -y, --confirm Don't ask for confirmation before deleting the channel. + -p, --project string Name or ID of the project the channel belongs to + + +Global Flags: + -h, --help Show help for a command + --no-prompt Disable prompting in interactive mode + -f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") + -s, --space string Specify the space for operations + +``` + +## Examples + + + +```bash +octopus channel delete "Hotfix" --project myProject +octopus channel rm Channels-123 --project myProject -y + + +``` + +## Learn more + +- [Octopus CLI](/docs/octopus-rest-api/cli) +- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-channel-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-channel-list.mdx new file mode 100644 index 0000000000..cca6ae2db1 --- /dev/null +++ b/src/pages/docs/octopus-rest-api/cli/octopus-channel-list.mdx @@ -0,0 +1,50 @@ +--- +layout: src/layouts/Default.astro +pubDate: 2023-01-01 +modDate: 2026-08-19 +title: octopus channel list +description: List channels +navOrder: 39 +--- +import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; + +List channels for a project in Octopus Deploy + +```text +Usage: + octopus channel list [flags] + +Aliases: + list, ls + +Flags: + -q, --filter string Filter channels to match only ones with a name containing the given string + -p, --project string Name or ID of the project to list channels for + + +Global Flags: + -h, --help Show help for a command + --no-prompt Disable prompting in interactive mode + -f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") + -s, --space string Specify the space for operations + +``` + +## Examples + + + +```bash +octopus channel list myProject +octopus channel ls "Other Project" +octopus channel list --project myProject +octopus channel list --project myProject --filter "Hotfix" +octopus channel ls -p myProject -q Hotfix + + +``` + +## Learn more + +- [Octopus CLI](/docs/octopus-rest-api/cli) +- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-channel-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-channel-view.mdx new file mode 100644 index 0000000000..bc49926c61 --- /dev/null +++ b/src/pages/docs/octopus-rest-api/cli/octopus-channel-view.mdx @@ -0,0 +1,44 @@ +--- +layout: src/layouts/Default.astro +pubDate: 2023-01-01 +modDate: 2026-08-19 +title: octopus channel view +description: View a channel +navOrder: 40 +--- +import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; + +View a channel in Octopus Deploy + +```text +Usage: + octopus channel view { | } [flags] + +Flags: + -p, --project string Name or ID of the project the channel belongs to + -w, --web Open in web browser + + +Global Flags: + -h, --help Show help for a command + --no-prompt Disable prompting in interactive mode + -f, --output-format string Specify the output format for a command ("json", "table", or "basic") (default "table") + -s, --space string Specify the space for operations + +``` + +## Examples + + + +```bash +octopus channel view "Hotfix" --project myProject +octopus channel view Channels-123 --project myProject + + +``` + +## Learn more + +- [Octopus CLI](/docs/octopus-rest-api/cli) +- [Creating API keys](/docs/octopus-rest-api/how-to-create-an-api-key) diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-channel.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-channel.mdx index 86025fb0dd..5a332dd499 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-channel.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-channel.mdx @@ -1,7 +1,7 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus channel description: Manage channels navOrder: 36 @@ -16,7 +16,10 @@ Usage: Available Commands: create Create a channel + delete Delete a channel help Help about any command + list List channels + view View a channel Global Flags: -h, --help Show help for a command @@ -34,6 +37,9 @@ Use "octopus channel [command] --help" for more information about a command. ```bash octopus channel create +octopus channel list --project myProject +octopus channel view "Hotfix" --project myProject +octopus channel delete "Hotfix" --project myProject ``` diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-config-get.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-config-get.mdx index 48cbabe80c..85c5869526 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-config-get.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-config-get.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus config get description: Gets the value of config key for Octopus CLI -navOrder: 39 +navOrder: 42 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-config-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-config-list.mdx index d660fe791a..d977f97bc9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-config-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-config-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus config list description: List values from config file -navOrder: 40 +navOrder: 43 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-config-set.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-config-set.mdx index dffab798c1..58696e2847 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-config-set.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-config-set.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus config set description: Set will write the value for given key to Octopus CLI config file -navOrder: 41 +navOrder: 44 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-config.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-config.mdx index 484fd3080f..f750a055ad 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-config.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-config.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus config description: Manage CLI configuration -navOrder: 38 +navOrder: 41 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-create.mdx index 948d5f31db..3e71be2c92 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target azure-web-app create description: Create an Azure Web App deployment target -navOrder: 44 +navOrder: 47 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-list.mdx index 9d9afdfd9a..8469fd3c96 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target azure-web-app list description: List Azure Web App deployment targets -navOrder: 45 +navOrder: 48 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-view.mdx index a80aa72aee..c75864b4dd 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target azure-web-app view description: View an Azure Web App deployment target -navOrder: 46 +navOrder: 49 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app.mdx index f7e3afeafd..75b687b739 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-azure-web-app.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target azure-web-app description: Manage Azure Web App deployment targets -navOrder: 43 +navOrder: 46 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-create.mdx index ac834ec514..6d70e9c70e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target cloud-region create description: Create a Cloud Region deployment target -navOrder: 48 +navOrder: 51 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-list.mdx index 9cf2454514..888dfadb30 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target cloud-region list description: List Cloud Region deployment targets -navOrder: 49 +navOrder: 52 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-view.mdx index b7693ade99..99fe82c4de 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target cloud-region view description: View a Cloud Region deployment target -navOrder: 50 +navOrder: 53 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region.mdx index 268c805c40..e6afa17b3f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-cloud-region.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target cloud-region description: Manage Cloud Region deployment targets -navOrder: 47 +navOrder: 50 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-delete.mdx index a82f7cd513..c0b22db9e3 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target delete description: Delete a deployment target -navOrder: 51 +navOrder: 54 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-create.mdx index 42cb8b5548..0a95c648c5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target kubernetes create description: Create a Kubernetes deployment target -navOrder: 53 +navOrder: 56 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-list.mdx index eb3f395b56..490fe74469 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target kubernetes list description: List Kubernetes deployment targets -navOrder: 54 +navOrder: 57 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-view.mdx index 8529a1b1a2..4d0b6873ef 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target kubernetes view description: View a Kubernetes deployment target -navOrder: 55 +navOrder: 58 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes.mdx index 2b3af3d54c..b5627ff6cf 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-kubernetes.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target kubernetes description: Manage Kubernetes deployment targets -navOrder: 52 +navOrder: 55 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-list.mdx index 94d1719bff..078cdbc84e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target list description: List deployment targets -navOrder: 56 +navOrder: 59 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-create.mdx index 1859e36b05..a0d4c6af53 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target listening-tentacle create description: Create a Listening Tentacle deployment target -navOrder: 58 +navOrder: 61 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-list.mdx index ccaaeecef6..987905d2b4 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target listening-tentacle list description: List Listening Tentacle deployment targets -navOrder: 59 +navOrder: 62 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-view.mdx index 7f5231d623..37b4535f89 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target listening-tentacle view description: View a Listening Tentacle deployment target -navOrder: 60 +navOrder: 63 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle.mdx index 4182ed6650..c708d13b8e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-listening-tentacle.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target listening-tentacle description: Manage Listening Tentacle deployment targets -navOrder: 57 +navOrder: 60 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-list.mdx index acb6814817..f70b23d849 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target polling-tentacle list description: List Polling Tentacle deployment targets -navOrder: 62 +navOrder: 65 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-view.mdx index 8038a28369..c396bd4052 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target polling-tentacle view description: View a Polling Tentacle deployment target -navOrder: 63 +navOrder: 66 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle.mdx index 7c8e5c115f..beaf5308a9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-polling-tentacle.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target polling-tentacle description: Manage Polling Tentacle deployment targets -navOrder: 61 +navOrder: 64 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-create.mdx index fa3f003b11..aad6f73ce1 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target ssh create description: Create a SSH deployment target -navOrder: 65 +navOrder: 68 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-list.mdx index 48d340bd91..9a17fed3a8 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target ssh list description: List SSH deployment targets -navOrder: 66 +navOrder: 69 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-view.mdx index 4ce340b556..57cdab1793 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target ssh view description: View a SSH deployment target -navOrder: 67 +navOrder: 70 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh.mdx index 9181711068..471fde1bb7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-ssh.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target ssh description: Manage SSH deployment targets -navOrder: 64 +navOrder: 67 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-view.mdx index 97aad390db..ebc4cdbf34 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target view description: View a deployment target -navOrder: 68 +navOrder: 71 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target.mdx index 5211803420..00f0145a74 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-deployment-target.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus deployment-target description: Manage deployment targets -navOrder: 42 +navOrder: 45 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-environment-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-environment-create.mdx index 607addee0b..cc2daf699b 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-environment-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-environment-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus environment create description: Create an environment -navOrder: 70 +navOrder: 73 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-environment-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-environment-delete.mdx index 34961d96b5..3baa2b43e7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-environment-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-environment-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus environment delete description: Delete an environment -navOrder: 71 +navOrder: 74 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-environment-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-environment-list.mdx index de0a99e76f..c3027762cc 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-environment-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-environment-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus environment list description: List environments -navOrder: 72 +navOrder: 75 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-environment-tag.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-environment-tag.mdx index 33b2801be6..b7b871f2df 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-environment-tag.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-environment-tag.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus environment tag description: Override tags for an environment -navOrder: 73 +navOrder: 76 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-environment.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-environment.mdx index c2fa1dcaae..93852b2aab 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-environment.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-environment.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus environment description: Manage environments -navOrder: 69 +navOrder: 72 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-create.mdx index ba238c45e2..7e6f270f11 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus ephemeral-environment create description: Create an ephemeral environment -navOrder: 75 +navOrder: 78 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-environment.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-environment.mdx index 03da15f6d3..237dad95d7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-environment.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-environment.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus ephemeral-environment deprovision-environment description: Deprovision an environment -navOrder: 76 +navOrder: 79 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-project.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-project.mdx index d0996aeb5f..e13973a6a7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-project.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment-deprovision-project.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus ephemeral-environment deprovision-project description: Deprovision an ephemeral environment for a project -navOrder: 77 +navOrder: 80 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment.mdx index daba31f305..6218e3d3e5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-ephemeral-environment.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus ephemeral-environment description: Manage ephemeral environments -navOrder: 74 +navOrder: 77 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-login.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-login.mdx index fb9adf682e..e5431b16b7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-login.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-login.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus login description: Login to Octopus -navOrder: 78 +navOrder: 81 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-logout.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-logout.mdx index 4221fda046..0a445cf01d 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-logout.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-logout.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus logout description: Logout of Octopus -navOrder: 79 +navOrder: 82 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-delete.mdx index fe806bc000..5f25834fd9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package delete description: Delete a package -navOrder: 81 +navOrder: 84 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-list.mdx index 48852a81e1..ace8145f18 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package list description: List packages -navOrder: 82 +navOrder: 85 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget-create.mdx index 2e52b2ba43..1ac94ac2a1 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-08-05 +modDate: 2026-08-19 title: octopus package nuget create description: Create nuget -navOrder: 84 +navOrder: 87 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget.mdx index 9b6219819f..2c1d6f0b8c 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-nuget.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package nuget description: Package as NuPkg -navOrder: 83 +navOrder: 86 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-upload.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-upload.mdx index 6e7c9a26b6..1db78d1009 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-upload.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-upload.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package upload description: Upload one or more packages to Octopus Deploy -navOrder: 85 +navOrder: 88 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-versions.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-versions.mdx index 2815c2da1b..a0de00f75a 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-versions.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-versions.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package versions description: List versions of a package -navOrder: 86 +navOrder: 89 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-zip-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-zip-create.mdx index 7409075e80..5bb13d9553 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-zip-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-zip-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-08-05 +modDate: 2026-08-19 title: octopus package zip create description: Create zip -navOrder: 88 +navOrder: 91 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package-zip.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package-zip.mdx index 1865929107..1bf0e484b5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package-zip.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package-zip.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package zip description: Package as zip -navOrder: 87 +navOrder: 90 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-package.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-package.mdx index 0aade66312..d96ca47dd8 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-package.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-package.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus package description: Manage packages -navOrder: 80 +navOrder: 83 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-create.mdx index c34a42f6e4..c1e89507d9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project branch create description: Create a Git branch for a project -navOrder: 91 +navOrder: 94 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-list.mdx index ac75c9b4ea..5f398b432f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project branch list description: List project branches -navOrder: 92 +navOrder: 95 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch.mdx index 1faef2a995..771cb49094 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-branch.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-branch.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project branch description: Manage project branches -navOrder: 90 +navOrder: 93 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-clone.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-clone.mdx index 77f70c42e0..9a6c092372 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-clone.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-clone.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project clone description: Clone a project -navOrder: 93 +navOrder: 96 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-connect.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-connect.mdx index a32bcb323d..7263ba8455 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-connect.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-connect.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project connect description: Connect a tenant to a project -navOrder: 94 +navOrder: 97 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-convert.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-convert.mdx index 9dafff00f9..e8d5988f22 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-convert.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-convert.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project convert description: Convert a project to use Config As Code -navOrder: 95 +navOrder: 98 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-create.mdx index b6c4bb1439..90eba7a50e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project create description: Create a project -navOrder: 96 +navOrder: 99 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-delete.mdx index 8d8cc7e2a0..bc253341c3 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project delete description: Delete a project -navOrder: 97 +navOrder: 100 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-disable.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-disable.mdx index ea03d5ca04..043bb788d0 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-disable.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-disable.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project disable description: Disable a project -navOrder: 98 +navOrder: 101 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-disconnect.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-disconnect.mdx index b99d727de1..d08fb7c70d 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-disconnect.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-disconnect.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project disconnect description: Disconnect a tenant from a project -navOrder: 99 +navOrder: 102 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-enable.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-enable.mdx index 3228acedb8..d02bce3cb8 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-enable.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-enable.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project enable description: Enable a project -navOrder: 100 +navOrder: 103 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-create.mdx index 86e11ebebe..85e9b92f60 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project-group create description: Create a project group -navOrder: 113 +navOrder: 116 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-delete.mdx index e6f2155611..20c40ba045 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project-group delete description: Delete a project group -navOrder: 114 +navOrder: 117 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-list.mdx index 8dfde4ad7a..23f15aab37 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project-group list description: List project groups -navOrder: 115 +navOrder: 118 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-view.mdx index 73c3f52460..2467dd9712 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-group-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-group-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project-group view description: View a project group -navOrder: 116 +navOrder: 119 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-group.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-group.mdx index 749f5168b9..fb8344b760 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-group.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-group.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project-group description: Manage project groups -navOrder: 112 +navOrder: 115 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-list.mdx index 5aea7729a5..48084d440b 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project list description: List projects -navOrder: 101 +navOrder: 104 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-tag.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-tag.mdx index ce24da6573..e9801ff3b6 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-tag.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-tag.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project tag description: Override tags for a project -navOrder: 102 +navOrder: 105 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-create.mdx index 3bd6c85a5b..e94d4e283e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables create description: Create a variable for a project -navOrder: 104 +navOrder: 107 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-delete.mdx index c0e65056c9..0727161e55 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables delete description: Delete a project variable -navOrder: 105 +navOrder: 108 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-exclude.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-exclude.mdx index ab3e381ccd..456142cff3 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-exclude.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-exclude.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables exclude description: Exclude a variable set from a project -navOrder: 106 +navOrder: 109 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-include.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-include.mdx index 65c6b9f569..d6173aca00 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-include.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-include.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables include description: Include a variable set in a project -navOrder: 107 +navOrder: 110 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-list.mdx index 7dad194a8a..7c450a1152 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables list description: List project variables -navOrder: 108 +navOrder: 111 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-update.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-update.mdx index 7480a6dd9e..97c578c708 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-update.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-update.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables update description: Update the value of a project variable -navOrder: 109 +navOrder: 112 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-view.mdx index 6ecc0c6219..5456363df1 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables view description: View all values of a project variable -navOrder: 110 +navOrder: 113 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables.mdx index b07f04cc07..4574d051ab 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-variables.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-variables.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project variables description: Manage project variables -navOrder: 103 +navOrder: 106 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project-view.mdx index 7dc320afc2..74811c2946 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project view description: View a project -navOrder: 111 +navOrder: 114 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-project.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-project.mdx index 8f505b0ad1..117548ccc2 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-project.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-project.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus project description: Manage projects -navOrder: 89 +navOrder: 92 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-create.mdx index 3c929bda6b..0d1280024f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-08-05 +modDate: 2026-08-19 title: octopus release create description: Create a release -navOrder: 118 +navOrder: 121 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-delete.mdx index 101156e2d3..b8f50a611b 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release delete description: Delete a release -navOrder: 119 +navOrder: 122 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-deploy.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-deploy.mdx index df9798adba..54cb7ca214 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-deploy.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-deploy.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release deploy description: Deploy releases -navOrder: 120 +navOrder: 123 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-list.mdx index b76dafe31e..9e7936f9a5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release list description: List releases -navOrder: 121 +navOrder: 124 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-allow.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-allow.mdx index 8e274e3d2a..648c3318e2 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-allow.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-allow.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release progression allow description: Allows a release to progress to the next phase. -navOrder: 123 +navOrder: 126 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-prevent.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-prevent.mdx index 083d7cebfb..366a436926 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-prevent.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression-prevent.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release progression prevent description: Prevents a release from progression to the next phase -navOrder: 124 +navOrder: 127 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression.mdx index 49a2a636d1..4c342ccf10 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release-progression.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release-progression.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release progression description: Manage progression of a release -navOrder: 122 +navOrder: 125 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-release.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-release.mdx index ba4447fba4..58b05d7bc3 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-release.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-release.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus release description: Manage releases -navOrder: 117 +navOrder: 120 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-delete.mdx index e97277d012..f64ad069e5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook delete description: Delete a runbook -navOrder: 126 +navOrder: 129 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-list.mdx index 1ac2549113..948b8f38ef 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook list description: List runbooks -navOrder: 127 +navOrder: 130 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-run.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-run.mdx index 7f924db4bd..dd15a78fb2 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-run.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-run.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook run description: Run runbooks in Octopus Deploy -navOrder: 128 +navOrder: 131 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-create.mdx index 27a3d51453..366cf37b89 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook snapshot create description: Create a runbook snapshot -navOrder: 130 +navOrder: 133 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-list.mdx index 978ac3782b..5f18a47193 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook snapshot list description: List runbook snapshots -navOrder: 131 +navOrder: 134 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-publish.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-publish.mdx index 15034cd23f..c8db52c804 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-publish.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot-publish.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook snapshot publish description: Publish a runbook snapshot -navOrder: 132 +navOrder: 135 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot.mdx index 7d49854b57..c695f22884 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook-snapshot.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook snapshot description: Manage runbook snapshots -navOrder: 129 +navOrder: 132 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-runbook.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-runbook.mdx index 77687374b4..9a6a42babc 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-runbook.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-runbook.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus runbook description: Manage runbooks -navOrder: 125 +navOrder: 128 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-space-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-space-create.mdx index b751736360..19d83bd814 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-space-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-space-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus space create description: Create a space -navOrder: 134 +navOrder: 137 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-space-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-space-delete.mdx index dd9b188cce..0c2f4ead81 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-space-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-space-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus space delete description: Delete a space -navOrder: 135 +navOrder: 138 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-space-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-space-list.mdx index d04c6e1bde..59e3529661 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-space-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-space-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus space list description: List spaces -navOrder: 136 +navOrder: 139 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-space-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-space-view.mdx index 960a3260d5..028863104f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-space-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-space-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus space view description: View a space -navOrder: 137 +navOrder: 140 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-space.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-space.mdx index a251ee5c6a..06186f8ce9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-space.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-space.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus space description: Manage spaces -navOrder: 133 +navOrder: 136 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-task-wait.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-task-wait.mdx index ea93cc22da..52facb4f43 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-task-wait.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-task-wait.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus task wait description: Wait for task(s) to finish -navOrder: 139 +navOrder: 142 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-task.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-task.mdx index 6e256b254b..fba4399df2 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-task.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-task.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus task description: Manage tasks -navOrder: 138 +navOrder: 141 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-clone.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-clone.mdx index 78de50da9f..095e36093d 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-clone.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-clone.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant clone description: Clone a tenant -navOrder: 141 +navOrder: 144 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-connect.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-connect.mdx index 233e2aa20f..032e012fc0 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-connect.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-connect.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant connect description: Connect a tenant to a project -navOrder: 142 +navOrder: 145 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-create.mdx index 69c1a4b0f4..46fc967f44 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant create description: Create a tenant -navOrder: 143 +navOrder: 146 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-delete.mdx index 597a188ddd..7badebf00c 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant delete description: Delete a tenant -navOrder: 144 +navOrder: 147 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disable.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disable.mdx index 0e805fd92e..b3a3744c5f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disable.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disable.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant disable description: Disable a tenant -navOrder: 145 +navOrder: 148 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disconnect.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disconnect.mdx index bab39fa3f8..8c959f7e3f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disconnect.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-disconnect.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant disconnect description: Disconnect a tenant from a project -navOrder: 146 +navOrder: 149 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-enable.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-enable.mdx index e797770fae..6efc573793 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-enable.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-enable.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant enable description: Enable a tenant -navOrder: 147 +navOrder: 150 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-list.mdx index 74daa8a904..396de2797f 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant list description: List tenants -navOrder: 148 +navOrder: 151 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-tag.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-tag.mdx index 88ae59ca57..d73e32eed7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-tag.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-tag.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant tag description: Override tags for a tenant -navOrder: 149 +navOrder: 152 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-list.mdx index 52e62874f6..cc91854d4c 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-08-05 +modDate: 2026-08-19 title: octopus tenant variables list description: List tenant variables -navOrder: 151 +navOrder: 154 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-update.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-update.mdx index af7fa1979f..eaa746ea39 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-update.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables-update.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant variables update description: Update the value of a tenant variable -navOrder: 152 +navOrder: 155 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables.mdx index 7024efef48..2fd7e8db6d 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-variables.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant variables description: Manage tenant variables -navOrder: 150 +navOrder: 153 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-view.mdx index ddc99a5cf2..7930b07b2a 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-08-05 +modDate: 2026-08-19 title: octopus tenant view description: View a tenant -navOrder: 153 +navOrder: 156 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-tenant.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-tenant.mdx index 1e613c4e87..52135b48aa 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-tenant.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-tenant.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus tenant description: Manage tenants -navOrder: 140 +navOrder: 143 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-user-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-user-delete.mdx index 7994a49988..0c93519fa1 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-user-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-user-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus user delete description: Delete a user -navOrder: 155 +navOrder: 158 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-user-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-user-list.mdx index b2329df5c9..8539466cda 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-user-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-user-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus user list description: List users -navOrder: 156 +navOrder: 159 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-user.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-user.mdx index f960515e3a..50940914d3 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-user.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-user.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus user description: Manage users -navOrder: 154 +navOrder: 157 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-delete.mdx index db0dce836f..4317c9d8f5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker delete description: Delete a worker -navOrder: 158 +navOrder: 161 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-list.mdx index 6dafafd334..30a4f4c01b 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker list description: List workers -navOrder: 159 +navOrder: 162 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-create.mdx index eaad15327f..15db072f1b 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker listening-tentacle create description: Create a listening tentacle worker -navOrder: 161 +navOrder: 164 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-list.mdx index 89e7faacc3..61aa7dc6da 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker listening-tentacle list description: List Listening Tentacle workers -navOrder: 162 +navOrder: 165 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-view.mdx index 95fc91e07d..a209d05a74 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker listening-tentacle view description: View a Listening Tentacle worker -navOrder: 163 +navOrder: 166 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle.mdx index c280bc81a6..9cf6ce6b99 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-listening-tentacle.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker listening-tentacle description: Manage Listening Tentacle workers -navOrder: 160 +navOrder: 163 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-list.mdx index c1f8fd98dc..ad045c65e7 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker polling-tentacle list description: List Polling Tentacle workers -navOrder: 165 +navOrder: 168 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-view.mdx index ef51a0e13c..651277c85a 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker polling-tentacle view description: View a Polling Tentacle worker -navOrder: 166 +navOrder: 169 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle.mdx index 113458665a..0264780e4d 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-polling-tentacle.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker polling-tentacle description: Manage Polling Tentacle workers -navOrder: 164 +navOrder: 167 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-delete.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-delete.mdx index 3f531de9fa..d21babb426 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-delete.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-delete.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool delete description: Delete a worker pool -navOrder: 173 +navOrder: 176 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-create.mdx index 6308c43586..91a87adb26 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool dynamic create description: Create a dynamic worker pool -navOrder: 175 +navOrder: 178 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-view.mdx index 8f06deff1e..d46b0925fe 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool dynamic view description: View a dynamic worker pool -navOrder: 176 +navOrder: 179 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic.mdx index 4f430fb505..7a69031510 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-dynamic.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool dynamic description: Manage dynamic worker pools -navOrder: 174 +navOrder: 177 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-list.mdx index 2d7854abcd..d12176410a 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool list description: List worker pools -navOrder: 177 +navOrder: 180 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-create.mdx index d5f399d397..84e8ece9df 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool static create description: Create a static worker pool -navOrder: 179 +navOrder: 182 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-view.mdx index 6e702f33fc..fdbcc0aa9e 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool static view description: View a static worker pool -navOrder: 180 +navOrder: 183 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static.mdx index 35ea1ae871..3a8b3be268 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-static.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool static description: Manage static worker pools -navOrder: 178 +navOrder: 181 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-view.mdx index c527f25449..867ac54ec0 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool view description: View a worker pool -navOrder: 181 +navOrder: 184 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool.mdx index a4f957831f..0751cf1ce6 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-pool.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker-pool description: Manage worker pools -navOrder: 172 +navOrder: 175 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-create.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-create.mdx index a5aa3f59f4..0be1a455c2 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-create.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-create.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker ssh create description: Create a SSH worker -navOrder: 168 +navOrder: 171 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-list.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-list.mdx index 105145c087..986e6497f1 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-list.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-list.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker ssh list description: List SSH workers -navOrder: 169 +navOrder: 172 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-view.mdx index a926179972..436d958aa9 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker ssh view description: View a SSH worker -navOrder: 170 +navOrder: 173 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh.mdx index a80c61fec1..e07b539fdb 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-ssh.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker ssh description: Manage SSH workers -navOrder: 167 +navOrder: 170 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker-view.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker-view.mdx index b69278ca03..3951de04c5 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker-view.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker-view.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker view description: View a worker -navOrder: 171 +navOrder: 174 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md'; diff --git a/src/pages/docs/octopus-rest-api/cli/octopus-worker.mdx b/src/pages/docs/octopus-rest-api/cli/octopus-worker.mdx index 515b83335f..8795abff4a 100644 --- a/src/pages/docs/octopus-rest-api/cli/octopus-worker.mdx +++ b/src/pages/docs/octopus-rest-api/cli/octopus-worker.mdx @@ -1,10 +1,10 @@ --- layout: src/layouts/Default.astro pubDate: 2023-01-01 -modDate: 2026-04-19 +modDate: 2026-08-19 title: octopus worker description: Manage workers -navOrder: 157 +navOrder: 160 --- import SamplesInstance from 'src/shared-content/samples/samples-instance.include.md';