Reference k Azure Developer CLI
Tento článek vysvětluje syntaxi a parametry pro různé příkazy Azure Developer CLI.
azd
Azure Developer CLI (azd
) je opensourcový nástroj, který pomáhá při onboardingu a správě vaší aplikace v Azure.
Možnosti
-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.
Viz také
- ověřování azd: Ověřování pomocí Azure
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- nasazení azd: Nasaďte kód aplikace do Azure.
- azd down: Odstraňte prostředky Azure pro aplikaci.
- azd env: Správa prostředí.
- háky azd: Vývoj, testování a spouštění háků pro aplikaci (Beta verze)
- azd init: Inicializace nové aplikace.
- monitorování azd: Monitor nasazené aplikace. (Beta verze)
- balíček azd: Zabalí kód aplikace, který se má nasadit do Azure. (Beta verze)
- kanál azd: Správa a konfigurace kanálů nasazení (Beta verze)
- zřízení azd: Zřízení prostředků Azure pro aplikaci
- obnovení azd: Obnoví závislosti aplikace. (Beta verze)
- azd show: Zobrazí informace o vaší aplikaci a jejích prostředcích.
- šablona azd: Vyhledání a zobrazení podrobností o šabloně (Beta verze)
- azd up: Zřiďte prostředky Azure a nasaďte projekt jedním příkazem.
- verze azd: Vytiskněte číslo verze Azure Developer CLI.
ověřování azd
Ověřování pomocí Azure
Možnosti
--docs Opens the documentation for azd auth in your web browser.
-h, --help Gets help for auth.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd auth login: Přihlaste se k Azure.
- odhlášení ověřování azd: Odhlaste se z Azure.
- Zpět na začátek
azd auth login
Přihlásí se k Azure.
Synopse
Přihlásí se k Azure.
Při spuštění bez argumentů se přihlaste interaktivně pomocí prohlížeče. Pokud se chcete přihlásit pomocí kódu zařízení, předejte --use-device-code.
Pokud se chcete přihlásit jako instanční objekt, předejte --client-id a --tenant-id a také jeden z těchto: --client-secret, --client-certificate nebo --federated-credential-provider.
Pokud se chcete přihlásit pomocí spravované identity, předejte --managed-identity, která bude používat spravovanou identitu přiřazenou systémem. Pokud chcete použít spravovanou identitu přiřazenou uživatelem, předejte kromě identity --managed-identity id klienta spravované identity přiřazené uživatelem, kterou chcete použít.
azd auth login [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- ověřování azd: Ověřování pomocí Azure
- Zpět na začátek
odhlášení ověřování azd
Odhlaste se z Azure.
Synopse
Odhlášení z Azure
azd auth logout [flags]
Možnosti
--docs Opens the documentation for azd auth logout in your web browser.
-h, --help Gets help for logout.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- ověřování azd: Ověřování pomocí Azure
- Zpět na začátek
konfigurace azd
Správa konfigurací AZD (např. výchozí předplatné Azure, umístění)
Synopse
Spravujte konfiguraci uživatele Azure Developer CLI, která zahrnuje vaše výchozí předplatné a umístění Azure.
K dispozici od azure-dev-cli_0.4.0-beta.1
.
Nejjednodušší způsob, jak nakonfigurovat azd
poprvé, je spustit azd init
. Vybrané předplatné a umístění budou uloženy v config.json
souboru umístěném v konfiguračním adresáři. Ke konfiguraci azd
kdykoli později použijete azd config set
.
Výchozí hodnota konfiguračního adresáře je:
- $HOME/.azd v Linuxu a macOS
- %USERPROFILE%.azd ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR.
Možnosti
--docs Opens the documentation for azd config in your web browser.
-h, --help Gets help for config.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd config get: Získá konfiguraci.
- azd config list-alpha: Zobrazí seznam dostupných funkcí v alfa fázi.
- resetování konfigurace azd: Obnoví konfiguraci na výchozí.
- konfigurační sada azd: Nastaví konfiguraci.
- Azd config show: Show all the configuration values.
- Azd config unset: Unsets a configuration.
- Zpět na začátek
Azd config get
Získá konfiguraci.
Synopse
Získá konfiguraci v cestě konfigurace.
Výchozí hodnota konfiguračního adresáře je:
$HOME/.azd
v Linuxu a macOS%USERPROFILE%\.azd
ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR.
azd config get <path> [flags]
Možnosti
--docs Opens the documentation for azd config get in your web browser.
-h, --help Gets help for get.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
azd config list-alpha
Zobrazí seznam dostupných funkcí ve fázi alfa.
azd config list-alpha [flags]
Možnosti
--docs Opens the documentation for azd config list-alpha in your web browser.
-h, --help Gets help for list-alpha.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
Resetování konfigurace azd
Obnoví výchozí konfiguraci.
Synopse
Obnoví veškerou konfiguraci v cestě konfigurace.
Výchozí hodnota konfiguračního adresáře je:
$HOME/.azd
v Linuxu a macOS%USERPROFILE%\.azd
ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR do výchozího nastavení.
azd config reset [flags]
Možnosti
--docs Opens the documentation for azd config reset in your web browser.
-f, --force Force reset without confirmation.
-h, --help Gets help for reset.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
Konfigurační sada azd
Nastaví konfiguraci.
Synopse
Nastaví konfiguraci v cestě konfigurace.
Výchozí hodnota konfiguračního adresáře je:
$HOME/.azd
v Linuxu a macOS%USERPROFILE%\.azd
ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR.
azd config set <path> <value> [flags]
Příklady
azd config set defaults.subscription <yourSubscriptionID>
azd config set defaults.location eastus
Možnosti
--docs Opens the documentation for azd config set in your web browser.
-h, --help Gets help for set.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
Azd config show
Zobrazí všechny hodnoty konfigurace.
Synopse
Zobrazí všechny hodnoty konfigurace v cestě konfigurace.
Výchozí hodnota konfiguračního adresáře je:
$HOME/.azd
v Linuxu a macOS%USERPROFILE%\.azd
ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR.
azd config show [flags]
Možnosti
--docs Opens the documentation for azd config show in your web browser.
-h, --help Gets help for show.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
Konfigurace azd unset
Zruší konfiguraci.
Synopse
Odebere konfiguraci v cestě konfigurace.
Výchozí hodnota konfiguračního adresáře je:
$HOME/.azd
v Linuxu a macOS%USERPROFILE%\.azd
ve Windows
Konfigurační adresář lze přepsat zadáním cesty v proměnné prostředí AZD_CONFIG_DIR.
azd config unset <path> [flags]
Příklady
azd config unset defaults.location
Možnosti
--docs Opens the documentation for azd config unset in your web browser.
-h, --help Gets help for unset.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace azd: Správa konfigurací AZD (např. výchozí předplatné Azure, umístění).
- Zpět na začátek
nasazení azd
Nasaďte kód aplikace do Azure.
azd deploy <service> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
azd dolů
Odstraňte prostředky Azure pro aplikaci.
azd down [flags]
Možnosti
--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).
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
azd env
Správa prostředí.
Možnosti
--docs Opens the documentation for azd env in your web browser.
-h, --help Gets help for env.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env get-value: Get specific environment value.
- azd env get-values: Získat všechny hodnoty prostředí.
- seznam azd env: Seznam prostředí.
- azd env new: Vytvořte nové prostředí a nastavte ho jako výchozí.
- azd env refresh: Aktualizujte nastavení prostředí pomocí informací z předchozího zřízení infrastruktury.
- azd env select: Nastavte výchozí prostředí.
- azd env set: Správa nastavení prostředí.
- Zpět na začátek
azd env get-value
Získejte konkrétní hodnotu prostředí.
azd env get-value <keyName> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env get-values
Získejte všechny hodnoty prostředí.
azd env get-values [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env list
Zobrazení seznamu prostředí
azd env list [flags]
Možnosti
--docs Opens the documentation for azd env list in your web browser.
-h, --help Gets help for list.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env nové
Vytvořte nové prostředí a nastavte ho jako výchozí.
azd env new <environment> [flags]
Možnosti
--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
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env refresh
Aktualizujte nastavení prostředí pomocí informací z předchozího zřízení infrastruktury.
azd env refresh <environment> [flags]
Možnosti
--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
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env select
Nastavte výchozí prostředí.
azd env select <environment> [flags]
Možnosti
--docs Opens the documentation for azd env select in your web browser.
-h, --help Gets help for select.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
azd env set
Umožňuje spravovat nastavení prostředí.
azd env set <key> <value> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd env: Správa prostředí.
- Zpět na začátek
háky azd
Vývoj, testování a spouštění háků pro aplikaci (Beta verze)
Možnosti
--docs Opens the documentation for azd hooks in your web browser.
-h, --help Gets help for hooks.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- spuštění háku azd: Spustí zadaný háček pro projekt a služby.
- Zpět na začátek
azd háky běh
Spustí zadaný hook pro projekt a služby.
azd hooks run <name> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- háky azd: Vývoj, testování a spouštění háků pro aplikaci (Beta verze)
- Zpět na začátek
azd init
Inicializace nové aplikace
azd init [flags]
Možnosti
-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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
monitorování azd
Monitorujte nasazenou aplikaci. (Beta verze)
azd monitor [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
balíček azd
Zabalí kód aplikace, který se má nasadit do Azure. (Beta verze)
azd package <service> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
kanál azd
Správa a konfigurace kanálů nasazení (Beta verze)
Možnosti
--docs Opens the documentation for azd pipeline in your web browser.
-h, --help Gets help for pipeline.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- konfigurace kanálu azd: Nakonfigurujte kanál nasazení tak, aby se bezpečně připojil k Azure. (Beta verze)
- Zpět na začátek
konfigurace kanálu azd
Nakonfigurujte kanál nasazení tak, aby se bezpečně připojil k Azure. (Beta verze)
azd pipeline config [flags]
Možnosti
-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")
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- kanál azd: Správa a konfigurace kanálů nasazení (Beta verze)
- Zpět na začátek
zřízení azd
Zřiďte prostředky Azure pro aplikaci.
azd provision [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
obnovení azd
Obnoví závislosti aplikace. (Beta verze)
azd restore <service> [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
azd show
Zobrazí informace o aplikaci a jejích prostředcích.
azd show [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
šablona azd
Vyhledání a zobrazení podrobností šablony (Beta verze)
Možnosti
--docs Opens the documentation for azd template in your web browser.
-h, --help Gets help for template.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- azd template list: Show list of sample azd templates. (Beta verze)
- šablona azd show: Show details for a given template. (Beta verze)
- zdroj šablony azd: Umožňuje zobrazit a spravovat zdroje šablon. (Beta verze)
- Zpět na začátek
seznam šablon azd
Zobrazit seznam ukázkových šablon azd (Beta verze)
azd template list [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- šablona azd: Vyhledání a zobrazení podrobností o šabloně (Beta verze)
- Zpět na začátek
šablona azd show
Umožňuje zobrazit podrobnosti pro danou šablonu. (Beta verze)
azd template show <template> [flags]
Možnosti
--docs Opens the documentation for azd template show in your web browser.
-h, --help Gets help for show.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- šablona azd: Vyhledání a zobrazení podrobností o šabloně (Beta verze)
- Zpět na začátek
zdroj šablony azd
Umožňuje zobrazit a spravovat zdroje šablon. (Beta verze)
Možnosti
--docs Opens the documentation for azd template source in your web browser.
-h, --help Gets help for source.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- šablona azd: Vyhledání a zobrazení podrobností o šabloně (Beta verze)
- azd template source add: Přidá zdroj šablony azd se zadaným klíčem. (Beta verze)
- azd template source list: List the configured azd template sources. (Beta verze)
- odebrání zdroje šablony azd: Odebere zadaný zdroj šablony AZD (beta verze).
- Zpět na začátek
azd template source add
Přidá zdroj šablony azd se zadaným klíčem. (Beta verze) Klíč může být libovolná hodnota, která jednoznačně identifikuje zdroj šablony s výjimkou následujících rezervovaných hodnot dobře známých klíčů:
- default: Výchozí šablony
- awesome-azd: Šablony z galerie šablon Awesome AZD
azd template source add <key> [flags]
Možnosti
--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'.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- zdroj šablony azd: Umožňuje zobrazit a spravovat zdroje šablon. (Beta verze)
- Zpět na začátek
azd template source list
Zobrazí seznam nakonfigurovaných zdrojů šablon azd. (Beta verze)
azd template source list [flags]
Možnosti
--docs Opens the documentation for azd template source list in your web browser.
-h, --help Gets help for list.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- zdroj šablony azd: Umožňuje zobrazit a spravovat zdroje šablon. (Beta verze)
- Zpět na začátek
Odebrání zdroje šablony azd
Odebere zadaný zdroj šablony AZD (beta verze).
azd template source remove <key> [flags]
Možnosti
--docs Opens the documentation for azd template source remove in your web browser.
-h, --help Gets help for remove.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
- zdroj šablony azd: Umožňuje zobrazit a spravovat zdroje šablon. (Beta verze)
- Zpět na začátek
azd nahoru
Zřiďte prostředky Azure a nasaďte projekt jedním příkazem.
azd up [flags]
Možnosti
--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.
Možnosti zděděné z nadřazených příkazů
-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.
Viz také
verze azd
Vytiskněte číslo verze Azure Developer CLI.
azd version [flags]
Možnosti
--docs Opens the documentation for azd version in your web browser.
-h, --help Gets help for version.
Možnosti zděděné z nadřazených příkazů
-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.