az devops wiki page
Note
This reference is part of the azure-devops extension for the Azure CLI (version 2.30.0 or higher). The extension will automatically install the first time you run an az devops wiki page command. Learn more about extensions.
Manage wiki pages.
Commands
Name | Description | Type | Status |
---|---|---|---|
az devops wiki page create |
Add a new page. |
Extension | GA |
az devops wiki page delete |
Delete a page. |
Extension | GA |
az devops wiki page show |
Get the content of a page or open a page. |
Extension | GA |
az devops wiki page update |
Edit a page. |
Extension | GA |
az devops wiki page create
Add a new page.
az devops wiki page create --path
--wiki
[--comment]
[--content]
[--detect {false, true}]
[--encoding {ascii, utf-16be, utf-16le, utf-8}]
[--file-path]
[--org]
[--project]
Examples
Create a new page with path 'my page' in a wiki named 'myprojectwiki' with inline content
az devops wiki page create --path 'my page' --wiki myprojectwiki --content "Hello World"
Create a new page with path 'my page' in a wiki named 'myprojectwiki' with content from a file
az devops wiki page create --path 'my page' --wiki myprojectwiki --file-path a.txt --encoding utf-8
Required Parameters
Path of the wiki page.
Name or Id of the wiki.
Optional Parameters
Comment in the commit message of file add operation.
Content of the wiki page. Ignored if --file-path is specified.
Automatically detect organization.
Encoding of the file. Used in conjunction with --file-path parameter.
Path of the file input if content is specified in the file.
Azure DevOps organization URL. You can configure the default organization using az devops configure -d organization=ORG_URL. Required if not configured as default or picked up via git config. Example: https://dev.azure.com/MyOrganizationName/.
Name or ID of the project. You can configure the default project using az devops configure -d project=NAME_OR_ID. Required if not configured as default or picked up via git config.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az devops wiki page delete
Delete a page.
az devops wiki page delete --path
--wiki
[--comment]
[--detect {false, true}]
[--org]
[--project]
[--yes]
Required Parameters
Path of the wiki page.
Name or Id of the wiki.
Optional Parameters
Comment in the commit message of delete operation.
Automatically detect organization.
Azure DevOps organization URL. You can configure the default organization using az devops configure -d organization=ORG_URL. Required if not configured as default or picked up via git config. Example: https://dev.azure.com/MyOrganizationName/.
Name or ID of the project. You can configure the default project using az devops configure -d project=NAME_OR_ID. Required if not configured as default or picked up via git config.
Do not prompt for confirmation.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az devops wiki page show
Get the content of a page or open a page.
az devops wiki page show --path
--wiki
[--detect {false, true}]
[--include-content]
[--open]
[--org]
[--project]
[--recursion-level]
[--version]
Required Parameters
Path of the wiki page.
Name or Id of the wiki.
Optional Parameters
Automatically detect organization.
Include content of the page.
Open the wiki page in your web browser.
Azure DevOps organization URL. You can configure the default organization using az devops configure -d organization=ORG_URL. Required if not configured as default or picked up via git config. Example: https://dev.azure.com/MyOrganizationName/.
Name or ID of the project. You can configure the default project using az devops configure -d project=NAME_OR_ID. Required if not configured as default or picked up via git config.
Include subpages of the page.
Version (ETag) of the wiki page.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az devops wiki page update
Edit a page.
az devops wiki page update --path
--version
--wiki
[--comment]
[--content]
[--detect {false, true}]
[--encoding {ascii, utf-16be, utf-16le, utf-8}]
[--file-path]
[--org]
[--project]
Examples
Update content of page with path 'my page' in a wiki named 'myprojectwiki' with inline content
az devops wiki page update --path 'my page' --wiki myprojectwiki --content "Hello World" --version 4ae78ad5835cb7dd55072fe210c9ee7eb6d6413b
Update content of page with path 'my page' in a wiki with content from a file
az devops wiki page update --path 'my page' --wiki myprojectwiki --file-path a.txt --encoding utf-8 --version 4ae78ad5835cb7dd55072fe210c9ee7eb6d6413b
Required Parameters
Path of the wiki page.
Version (ETag) of file to edit.
Name or Id of the wiki.
Optional Parameters
Comment in the commit message of file edit operation.
Content of the wiki page. Ignored if --file-path is specified.
Automatically detect organization.
Encoding of the file. Used in conjunction with --file-path parameter.
Path of the file input if content is specified in the file.
Azure DevOps organization URL. You can configure the default organization using az devops configure -d organization=ORG_URL. Required if not configured as default or picked up via git config. Example: https://dev.azure.com/MyOrganizationName/.
Name or ID of the project. You can configure the default project using az devops configure -d project=NAME_OR_ID. Required if not configured as default or picked up via git config.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.