Referencia de Azure Developer CLI
En este artículo se explican la sintaxis y los parámetros de los distintos comandos de la CLI para desarrolladores de Azure.
La CLI para desarrolladores de Azure (azd
) es una herramienta de código abierto que ayuda a incorporar y administrar la aplicación en Azure.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--docs Opens the documentation for azd in your web browser.
-h, --help Gets help for azd.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd add: agregue un componente al proyecto. (Alfa)
- azd auth: autenticar con Azure.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- azd deploy: implementar el código de la aplicación en Azure.
- azd down: eliminar los recursos de Azure para una aplicación.
- azd env: administrar entornos.
- azd hooks: desarrollar, probar y ejecutar enlaces para una aplicación. (Beta)
- azd init: inicializar una nueva aplicación.
- azd monitor: supervisar una aplicación implementada. (Beta)
- azd package: empaquetar el código de la aplicación que se va a implementar en Azure. (Beta)
- azd pipeline: administrar y configurar los pipelines de implementación. (Beta)
- azd provision: aprovisionar los recursos Azure para una aplicación.
- azd restore: restaurar las dependencias de la aplicación. (Beta)
- azd show: mostrar información sobre la aplicación y sus recursos.
- azd template: buscar y ver los detalles de la plantilla. (Beta)
- azd up: aprovisionar recursos de Azure e implementar el proyecto con un solo comando.
- azd version: imprimir el número de versión de la CLI para desarrolladores de Azure.
Agregue un componente al proyecto. (Alfa)
azd add [flags]
--docs Opens the documentation for azd add in your web browser.
-h, --help Gets help for add.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Autenticación con Azure.
--docs Opens the documentation for azd auth in your web browser.
-h, --help Gets help for auth.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd auth login: iniciar sesión en Azure.
- azd auth logout: cerrar sesión en Azure.
- Volver al principio
Inicie sesión en Azure.
Inicie sesión en Azure.
Cuando se ejecuta sin ningún argumento, inicie sesión de forma interactiva mediante un explorador. Para iniciar sesión con un código de dispositivo, pase --use-device-code.
Para iniciar sesión como entidad de servicio, pase --client-id y --tenant-id, así como uno de: --client-secret, --client-certificate o --federated-credential-provider.
Para iniciar sesión con una identidad administrada, pase --managed-identity, que usará la identidad administrada asignada por el sistema. Para usar una identidad administrada asignada por el usuario, pase --client-id además de --managed-identity con el identificador de cliente de la identidad administrada asignada por el usuario que desea usar.
azd auth login [flags]
--check-status Checks the log-in status instead of logging in.
--client-certificate string The path to the client certificate for the service principal to authenticate with.
--client-id string The client id for the service principal to authenticate with.
--client-secret string The client secret for the service principal to authenticate with. Set to the empty string to read the value from the console.
--docs Opens the documentation for azd auth login in your web browser.
--federated-credential-provider string The provider to use to acquire a federated token to authenticate with.
-h, --help Gets help for login.
--managed-identity Use a managed identity to authenticate.
--redirect-port int Choose the port to be used as part of the redirect URI during interactive login.
--tenant-id string The tenant id or domain name to authenticate with.
--use-device-code[=true] When true, log in by using a device code instead of a browser.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd auth: autenticar con Azure.
- Volver al principio
Cierre la sesión de Azure.
Cerrar la sesión de Azure
azd auth logout [flags]
--docs Opens the documentation for azd auth logout in your web browser.
-h, --help Gets help for logout.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd auth: autenticar con Azure.
- Volver al principio
Administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
Administre la configuración de usuario de la CLI para desarrolladores de Azure, que incluye la suscripción y la ubicación predeterminadas de Azure.
Disponible desde la versión azure-dev-cli_0.4.0-beta.1
.
La manera más fácil de configurar azd
por primera vez es ejecutar azd init
. La suscripción y la ubicación que seleccione se almacenarán en el archivo config.json
ubicado en el directorio de configuración. Para configurar azd
en cualquier momento posterior, usará azd config set
.
El valor predeterminado del directorio de configuración es:
- $HOME/.azd en Linux y macOS
- %USERPROFILE%.azd en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso en la variable de entorno AZD_CONFIG_DIR.
--docs Opens the documentation for azd config in your web browser.
-h, --help Gets help for config.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config get: obtiene una configuración.
- azd config list-alpha: muestra la lista de características disponibles en la fase alfa.
- azd config reset: restablece la configuración al valor predeterminado.
- azd config set: establece una configuración.
- azd config show: muestra todos los valores de configuración.
- azd config unset: anula la configuración.
- Volver al principio
Obtiene una configuración.
Obtiene una configuración en la ruta de acceso de configuración.
El valor predeterminado del directorio de configuración es:
$HOME/.azd
en Linux y macOS%USERPROFILE%\.azd
en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso en la variable de entorno AZD_CONFIG_DIR.
azd config get <path> [flags]
--docs Opens the documentation for azd config get in your web browser.
-h, --help Gets help for get.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Muestra la lista de características disponibles en la fase alfa.
azd config list-alpha [flags]
--docs Opens the documentation for azd config list-alpha in your web browser.
-h, --help Gets help for list-alpha.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Restablece la configuración predeterminada.
Restablece toda la configuración en la ruta de acceso de configuración.
El valor predeterminado del directorio de configuración es:
$HOME/.azd
en Linux y macOS%USERPROFILE%\.azd
en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso predeterminada en la variable de entorno AZD_CONFIG_DIR.
azd config reset [flags]
--docs Opens the documentation for azd config reset in your web browser.
-f, --force Force reset without confirmation.
-h, --help Gets help for reset.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Establece una configuración.
Establece una configuración en la ruta de acceso de configuración.
El valor predeterminado del directorio de configuración es:
$HOME/.azd
en Linux y macOS%USERPROFILE%\.azd
en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso en la variable de entorno AZD_CONFIG_DIR.
azd config set <path> <value> [flags]
azd config set defaults.subscription <yourSubscriptionID>
azd config set defaults.location eastus
--docs Opens the documentation for azd config set in your web browser.
-h, --help Gets help for set.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Muestra todos los valores de configuración.
Muestra todos los valores de configuración en la ruta de acceso de configuración.
El valor predeterminado del directorio de configuración es:
$HOME/.azd
en Linux y macOS%USERPROFILE%\.azd
en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso en la variable de entorno AZD_CONFIG_DIR.
azd config show [flags]
--docs Opens the documentation for azd config show in your web browser.
-h, --help Gets help for show.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Anula una configuración.
Quita una configuración en la ruta de acceso de configuración.
El valor predeterminado del directorio de configuración es:
$HOME/.azd
en Linux y macOS%USERPROFILE%\.azd
en Windows
El directorio de configuración se puede invalidar especificando una ruta de acceso en la variable de entorno AZD_CONFIG_DIR.
azd config unset <path> [flags]
azd config unset defaults.location
--docs Opens the documentation for azd config unset in your web browser.
-h, --help Gets help for unset.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd config: administrar las configuraciones de azd (por ejemplo, la suscripción de Azure predeterminada, la ubicación).
- Volver al principio
Implementación del código de la aplicación en Azure.
azd deploy <service> [flags]
--all Deploys all services that are listed in azure.yaml
--docs Opens the documentation for azd deploy in your web browser.
-e, --environment string The name of the environment to use.
--from-package string Deploys the application from an existing package.
-h, --help Gets help for deploy.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Elimina los recursos de Azure para una aplicación.
azd down [flags]
--docs Opens the documentation for azd down in your web browser.
-e, --environment string The name of the environment to use.
--force Does not require confirmation before it deletes resources.
-h, --help Gets help for down.
--purge Does not require confirmation before it permanently deletes resources that are soft-deleted by default (for example, key vaults).
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Administrar entornos.
--docs Opens the documentation for azd env in your web browser.
-h, --help Gets help for env.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env get-value: obtener un valor de entorno específico.
- azd env get-values: obtener todos los valores de entorno.
- azd env list: enumerar los entornos.
- azd env new: crear un nuevo entorno y establecerlo como predeterminado.
- azd env refresh: actualizar la configuración del entorno mediante la información de un aprovisionamiento de infraestructura anterior.
- azd env select: establecer el entorno predeterminado.
- azd env set: administrar la configuración del entorno.
- Volver al principio
Obtenga un valor de entorno específico.
azd env get-value <keyName> [flags]
--docs Opens the documentation for azd env get-value in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for get-value.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Obtenga todos los valores de entorno.
azd env get-values [flags]
--docs Opens the documentation for azd env get-values in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for get-values.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Enumera los ambientes.
azd env list [flags]
--docs Opens the documentation for azd env list in your web browser.
-h, --help Gets help for list.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Cree un nuevo entorno y establézcalo como predeterminado.
azd env new <environment> [flags]
--docs Opens the documentation for azd env new in your web browser.
-h, --help Gets help for new.
-l, --location string Azure location for the new environment
--subscription string Name or ID of an Azure subscription to use for the new environment
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Actualice la configuración del entorno mediante la información de un aprovisionamiento de infraestructura anterior.
azd env refresh <environment> [flags]
--docs Opens the documentation for azd env refresh in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for refresh.
--hint string Hint to help identify the environment to refresh
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Establezca el entorno predeterminado.
azd env select <environment> [flags]
--docs Opens the documentation for azd env select in your web browser.
-h, --help Gets help for select.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Administre la configuración del entorno.
azd env set <key> <value> [flags]
--docs Opens the documentation for azd env set in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for set.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd env: administrar entornos.
- Volver al principio
Desarrolle, pruebe y ejecute enlaces para una aplicación. (Beta)
--docs Opens the documentation for azd hooks in your web browser.
-h, --help Gets help for hooks.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd hooks run: ejecuta el enlace especificado para el proyecto y los servicios.
- Volver al principio
Ejecuta el enlace especificado para el proyecto y los servicios
azd hooks run <name> [flags]
--docs Opens the documentation for azd hooks run in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for run.
--platform string Forces hooks to run for the specified platform.
--service string Only runs hooks for the specified service.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd hooks: desarrollar, probar y ejecutar enlaces para una aplicación. (Beta)
- Volver al principio
Inicialice una nueva aplicación.
azd init [flags]
-b, --branch string The template branch to initialize from. Must be used with a template argument (--template or -t).
--docs Opens the documentation for azd init in your web browser.
-e, --environment string The name of the environment to use.
-f, --filter strings The tag(s) used to filter template results. Supports comma-separated values.
--from-code Initializes a new application from your existing code.
-h, --help Gets help for init.
-l, --location string Azure location for the new environment
-s, --subscription string Name or ID of an Azure subscription to use for the new environment
-t, --template string Initializes a new application from a template. You can use Full URI, <owner>/<repository>, or <repository> if it's part of the azure-samples organization.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Supervise una aplicación implementada. (Beta)
azd monitor [flags]
--docs Opens the documentation for azd monitor in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for monitor.
--live Open a browser to Application Insights Live Metrics. Live Metrics is currently not supported for Python apps.
--logs Open a browser to Application Insights Logs.
--overview Open a browser to Application Insights Overview Dashboard.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Empaqueta el código de la aplicación que se va a implementar en Azure. (Beta)
azd package <service> [flags]
--all Packages all services that are listed in azure.yaml
--docs Opens the documentation for azd package in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for package.
--output-path string File or folder path where the generated packages will be saved.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Administre y configure las canalizaciones de implementación. (Beta)
--docs Opens the documentation for azd pipeline in your web browser.
-h, --help Gets help for pipeline.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd pipeline config: configure la canalización de implementación para conectarse de forma segura a Azure. (Beta)
- Volver al principio
Configure la canalización de implementación para conectarse de forma segura a Azure. (Beta)
azd pipeline config [flags]
-m, --applicationServiceManagementReference string Service Management Reference. References application or service contact information from a Service or Asset Management database. This value must be a Universally Unique Identifier (UUID). You can set this value globally by running azd config set pipeline.config.applicationServiceManagementReference <UUID>.
--auth-type string The authentication type used between the pipeline provider and Azure for deployment (Only valid for GitHub provider). Valid values: federated, client-credentials.
--docs Opens the documentation for azd pipeline config in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for config.
--principal-id string The client id of the service principal to use to grant access to Azure resources as part of the pipeline.
--principal-name string The name of the service principal to use to grant access to Azure resources as part of the pipeline.
--principal-role stringArray The roles to assign to the service principal. By default the service principal will be granted the Contributor and User Access Administrator roles. (default [Contributor,User Access Administrator])
--provider string The pipeline provider to use (github for Github Actions and azdo for Azure Pipelines).
--remote-name string The name of the git remote to configure the pipeline to run on. (default "origin")
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd pipeline: administrar y configurar los pipelines de implementación. (Beta)
- Volver al principio
Aprovisione los recursos de Azure para una aplicación.
azd provision [flags]
--docs Opens the documentation for azd provision in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for provision.
--no-state Do not use latest Deployment State (bicep only).
--preview Preview changes to Azure resources.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Restaura las dependencias de la aplicación. (Beta)
azd restore <service> [flags]
--all Restores all services that are listed in azure.yaml
--docs Opens the documentation for azd restore in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for restore.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Muestra información sobre la aplicación y sus recursos.
azd show [flags]
--docs Opens the documentation for azd show in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for show.
--show-secrets Unmask secrets in output.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Busque y vea los detalles de la plantilla. (Beta)
--docs Opens the documentation for azd template in your web browser.
-h, --help Gets help for template.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template list: mostrar una lista de plantillas azd de ejemplo. (Beta)
- azd template show: mostrar los detalles de una plantilla determinada. (Beta)
- azd template source: ver y administrar orígenes de plantilla. (Beta)
- Volver al principio
Mostrar una lista de plantillas azd de ejemplo. (Beta)
azd template list [flags]
--docs Opens the documentation for azd template list in your web browser.
-f, --filter strings The tag(s) used to filter template results. Supports comma-separated values.
-h, --help Gets help for list.
-s, --source string Filters templates by source.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template: buscar y ver los detalles de la plantilla. (Beta)
- Volver al principio
Mostrar los detalles de una plantilla determinada. (Beta)
azd template show <template> [flags]
--docs Opens the documentation for azd template show in your web browser.
-h, --help Gets help for show.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template: buscar y ver los detalles de la plantilla. (Beta)
- Volver al principio
Ver y administrar orígenes de plantilla. (Beta)
--docs Opens the documentation for azd template source in your web browser.
-h, --help Gets help for source.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template: buscar y ver los detalles de la plantilla. (Beta)
- azd template source add: agrega un origen de plantilla azd con la clave especificada. (Beta)
- azd template source list: enumera los orígenes de plantilla azd configurados. (Beta)
- azd template source remove: quita el origen de la plantilla azd especificado (Beta)
- Volver al principio
Agrega un origen de plantilla azd con la clave especificada. (Beta)
La clave puede ser cualquier valor que identifique de forma única el origen de la plantilla, con valores conocidos que son: ・valor predeterminado: Plantillas predeterminadas ・awesome-azd: Plantillas de https://aka.ms/awesome-azd
azd template source add <key> [flags]
--docs Opens the documentation for azd template source add in your web browser.
-h, --help Gets help for add.
-l, --location string Location of the template source. Required when using type flag.
-n, --name string Display name of the template source.
-t, --type string Kind of the template source. Supported types are 'file', 'url' and 'gh'.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template source: ver y administrar orígenes de plantilla. (Beta)
- Volver al principio
Enumera los orígenes de plantilla azd configurados. (Beta)
azd template source list [flags]
--docs Opens the documentation for azd template source list in your web browser.
-h, --help Gets help for list.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template source: ver y administrar orígenes de plantilla. (Beta)
- Volver al principio
Quita el origen de plantilla azd especificado (Beta)
azd template source remove <key> [flags]
--docs Opens the documentation for azd template source remove in your web browser.
-h, --help Gets help for remove.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
- azd template source: ver y administrar orígenes de plantilla. (Beta)
- Volver al principio
Aprovisiona recursos de Azure e implementa el proyecto con un solo comando.
azd up [flags]
--docs Opens the documentation for azd up in your web browser.
-e, --environment string The name of the environment to use.
-h, --help Gets help for up.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.
Imprima el número de versión de la CLI para desarrolladores de Azure.
azd version [flags]
--docs Opens the documentation for azd version in your web browser.
-h, --help Gets help for version.
-C, --cwd string Sets the current working directory.
--debug Enables debugging and diagnostics logging.
--no-prompt Accepts the default value instead of prompting, or it fails if there is no default.