Azure Developer CLI başvurusu

Bu makalede, çeşitli Azure Geliştirici CLI komutlarının söz dizimi ve parametreleri açıklanmaktadır.

azd

Azure Geliştirici CLI'sı (azd), Azure'da uygulamanızı eklemeye ve yönetmeye yardımcı olan açık kaynak bir araçtır

Seçenekler

  -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.

Ayrıca bkz.

  • azd auth: Azure ile kimlik doğrulaması.
  • azd yapılandırması: Azd yapılandırmalarını yönetme (ör. varsayılan Azure aboneliği, konum).
  • azd deploy: Uygulamanın kodunu Azure'a dağıtın.
  • azd down: Bir uygulamanın Azure kaynaklarını silin.
  • azd env: Ortamları yönetin.
  • azd kancaları: Uygulama için kancaları geliştirin, test edin ve çalıştırın. (Beta)
  • azd init: Yeni bir uygulama başlatın.
  • azd monitor: Dağıtılan bir uygulamayı izleyin. (Beta)
  • azd paketi: Uygulamanın kodunu Azure'a dağıtılacak şekilde paketler. (Beta)
  • azd işlem hattı: Dağıtım işlem hatlarınızı yönetin ve yapılandırın. (Beta)
  • azd provision: Bir uygulama için Azure kaynaklarını sağlayın.
  • azd restore: Uygulamanın bağımlılıklarını geri yükler. (Beta)
  • azd show: Uygulamanız ve kaynaklarıyla ilgili bilgileri görüntüleyin.
  • azd şablonu: Şablon ayrıntılarını bulun ve görüntüleyin. (Beta)
  • azd up: Azure kaynaklarını sağlayın ve projenizi tek bir komutla dağıtın.
  • azd version: Azure Developer CLI'nın sürüm numarasını yazdırın.

azd auth

Azure ile kimlik doğrulaması.

Seçenekler

      --docs   Opens the documentation for azd auth in your web browser.
  -h, --help   Gets help for auth.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd auth login

Azure'da oturum açın.

Özet

Azure'da oturum açın.

Bağımsız değişken olmadan çalıştırıldığında, bir tarayıcı kullanarak etkileşimli olarak oturum açın. Cihaz kodu kullanarak oturum açmak için --use-device-code komutunu geçirin.

Hizmet sorumlusu olarak oturum açmak için --client-id ve --tenant-id değerlerinin yanı sıra şunlardan birini geçirin: --client-secret, --client-certificate veya --federated-credential-provider.

azd auth login [flags]

Seçenekler

      --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.
      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd auth oturum kapatma

Azure oturumunuzu kapatın.

Özet

Azure oturumunuzu kapatın

azd auth logout [flags]

Seçenekler

      --docs   Opens the documentation for azd auth logout in your web browser.
  -h, --help   Gets help for logout.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd yapılandırması

azd yapılandırmalarını yönetme (ör. varsayılan Azure aboneliği, konum).

Özet

Varsayılan Azure aboneliğinizi ve konumunuzu içeren Azure Geliştirici CLI kullanıcı yapılandırmasını yönetin.

'den itibaren azure-dev-cli_0.4.0-beta.1kullanılabilir.

İlk kez yapılandırmanın azd en kolay yolu komutunu çalıştırmaktır azd init. Seçtiğiniz abonelik ve konum, yapılandırma dizininde config.json bulunan dosyada depolanır. Daha sonra istediğiniz zaman yapılandırmak azd için kullanacaksınız azd config set.

Yapılandırma dizininin varsayılan değeri:

  • Linux ve macOS'ta $HOME/.azd
  • Windows'da %USERPROFILE%.azd

yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde bir yol belirtilerek geçersiz kılınabilir.

Seçenekler

      --docs   Opens the documentation for azd config in your web browser.
  -h, --help   Gets help for config.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd config get

Yapılandırmayı alır.

Özet

Yapılandırma yolunda bir yapılandırma alır.

Yapılandırma dizininin varsayılan değeri:

  • $HOME/.azd Linux ve macOS'ta
  • %USERPROFILE%\.azd Windows'ta

yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde bir yol belirtilerek geçersiz kılınabilir.

azd config get <path> [flags]

Seçenekler

      --docs   Opens the documentation for azd config get in your web browser.
  -h, --help   Gets help for get.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd config list-alpha

Alfa aşamasındaki kullanılabilir özelliklerin listesini görüntüleyin.

azd config list-alpha [flags]

Seçenekler

      --docs   Opens the documentation for azd config list-alpha in your web browser.
  -h, --help   Gets help for list-alpha.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd config reset

Yapılandırmayı varsayılana sıfırlar.

Özet

Yapılandırma yolundaki tüm yapılandırmayı sıfırlar.

Yapılandırma dizininin varsayılan değeri:

  • $HOME/.azd Linux ve macOS'ta
  • %USERPROFILE%\.azd Windows'ta

Yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde varsayılan olarak bir yol belirtilerek geçersiz kılınabilir.

azd config reset [flags]

Seçenekler

      --docs    Opens the documentation for azd config reset in your web browser.
  -f, --force   Force reset without confirmation.
  -h, --help    Gets help for reset.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd yapılandırma kümesi

Yapılandırmayı ayarlar.

Özet

Yapılandırma yolunda bir yapılandırma ayarlar.

Yapılandırma dizininin varsayılan değeri:

  • $HOME/.azd Linux ve macOS'ta
  • %USERPROFILE%\.azd Windows'ta

yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde bir yol belirtilerek geçersiz kılınabilir.

azd config set <path> <value> [flags]

Örnekler

azd config set defaults.subscription <yourSubscriptionID>
azd config set defaults.location eastus

Seçenekler

      --docs   Opens the documentation for azd config set in your web browser.
  -h, --help   Gets help for set.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd config show

Tüm yapılandırma değerlerini gösterin.

Özet

Yapılandırma yolundaki tüm yapılandırma değerlerini gösterin.

Yapılandırma dizininin varsayılan değeri:

  • $HOME/.azd Linux ve macOS'ta
  • %USERPROFILE%\.azd Windows'ta

yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde bir yol belirtilerek geçersiz kılınabilir.

azd config show [flags]

Seçenekler

      --docs   Opens the documentation for azd config show in your web browser.
  -h, --help   Gets help for show.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd config unset

Yapılandırmayı kaldırma.

Özet

Yapılandırma yolundaki bir yapılandırmayı kaldırır.

Yapılandırma dizininin varsayılan değeri:

  • $HOME/.azd Linux ve macOS'ta
  • %USERPROFILE%\.azd Windows'ta

yapılandırma dizini, AZD_CONFIG_DIR ortam değişkeninde bir yol belirtilerek geçersiz kılınabilir.

azd config unset <path> [flags]

Örnekler

azd config unset defaults.location

Seçenekler

      --docs   Opens the documentation for azd config unset in your web browser.
  -h, --help   Gets help for unset.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd deploy

Uygulamanın kodunu Azure'a dağıtın.

azd deploy <service> [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd down

Bir uygulamanın Azure kaynaklarını silme.

azd down [flags]

Seçenekler

      --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).

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env

Ortamları yönetme.

Seçenekler

      --docs   Opens the documentation for azd env in your web browser.
  -h, --help   Gets help for env.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env get-values

Tüm ortam değerlerini alın.

azd env get-values [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env list

Ortamları listeleyin.

azd env list [flags]

Seçenekler

      --docs   Opens the documentation for azd env list in your web browser.
  -h, --help   Gets help for list.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env new

Yeni bir ortam oluşturun ve bunu varsayılan olarak ayarlayın.

azd env new <environment> [flags]

Seçenekler

      --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

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env refresh

Önceki bir altyapı sağlamasından alınan bilgileri kullanarak ortam ayarlarını yenileyin.

azd env refresh <environment> [flags]

Seçenekler

      --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

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env select

Varsayılan ortamı ayarlayın.

azd env select <environment> [flags]

Seçenekler

      --docs   Opens the documentation for azd env select in your web browser.
  -h, --help   Gets help for select.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd env set

Ortam ayarlarınızı yönetin.

azd env set <key> <value> [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd kancaları

Uygulama için kancalar geliştirin, test edin ve çalıştırın. (Beta)

Seçenekler

      --docs   Opens the documentation for azd hooks in your web browser.
  -h, --help   Gets help for hooks.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd hooks run

Proje ve hizmetler için belirtilen kancayı çalıştırır

azd hooks run <name> [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd init

Yeni bir uygulama başlatın.

azd init [flags]

Seçenekler

  -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.
  -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       The template to use when you initialize the project. You can use Full URI, <owner>/<repository>, or <repository> if it's part of the azure-samples organization.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd monitor

Dağıtılan bir uygulamayı izleme. (Beta)

azd monitor [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd package

Uygulamanın kodunu Azure'a dağıtılacak şekilde paketler. (Beta)

azd package <service> [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd işlem hattı

Dağıtım işlem hatlarınızı yönetin ve yapılandırın. (Beta)

Seçenekler

      --docs   Opens the documentation for azd pipeline in your web browser.
  -h, --help   Gets help for pipeline.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd işlem hattı yapılandırması

Dağıtım işlem hattınızı Azure'a güvenli bir şekilde bağlanacak şekilde yapılandırın. (Beta)

azd pipeline config [flags]

Seçenekler

      --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")

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd sağlama

Bir uygulama için Azure kaynaklarını sağlama.

azd provision [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd restore

Uygulamanın bağımlılıklarını geri yükler. (Beta)

azd restore <service> [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd show

Uygulamanız ve kaynakları hakkındaki bilgileri görüntüleyin.

azd show [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd şablonu

Şablon ayrıntılarını bulun ve görüntüleyin. (Beta)

Seçenekler

      --docs   Opens the documentation for azd template in your web browser.
  -h, --help   Gets help for template.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd şablon listesi

Örnek azd şablonlarının listesini göster. (Beta)

azd template list [flags]

Seçenekler

      --docs            Opens the documentation for azd template list in your web browser.
  -h, --help            Gets help for list.
  -s, --source string   Filters templates by source.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd template show

Belirli bir şablonun ayrıntılarını gösterir. (Beta)

azd template show <template> [flags]

Seçenekler

      --docs   Opens the documentation for azd template show in your web browser.
  -h, --help   Gets help for show.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd şablon kaynağı

Şablon kaynaklarını görüntüleyin ve yönetin. (Beta)

Seçenekler

      --docs   Opens the documentation for azd template source in your web browser.
  -h, --help   Gets help for source.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd template source add

Belirtilen anahtara azd şablonu kaynağı ekler (Beta)

azd template source add <key> [flags]

Seçenekler

      --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.
  -n, --name string       Display name of the template source.
  -t, --type string       Kind of the template source.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd şablonu kaynak listesi

Yapılandırılmış azd şablon kaynaklarını listeler. (Beta)

azd template source list [flags]

Seçenekler

      --docs   Opens the documentation for azd template source list in your web browser.
  -h, --help   Gets help for list.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd şablon kaynağı kaldırma

Belirtilen azd şablon kaynağını kaldırır (Beta)

azd template source remove <key> [flags]

Seçenekler

      --docs   Opens the documentation for azd template source remove in your web browser.
  -h, --help   Gets help for remove.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd up

Azure kaynaklarını sağlayın ve projenizi tek bir komutla dağıtın.

azd up [flags]

Seçenekler

      --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.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.

azd sürümü

Azure Geliştirici CLI'sının sürüm numarasını yazdırın.

azd version [flags]

Seçenekler

      --docs   Opens the documentation for azd version in your web browser.
  -h, --help   Gets help for version.

Üst komutlardan devralınan seçenekler

  -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.

Ayrıca bkz.