From 9eab3b0ba9e535ebbfdc8e5a77a3112fbe09157e Mon Sep 17 00:00:00 2001 From: Jeffrey Chen Date: Thu, 23 Jul 2026 10:25:02 -0700 Subject: [PATCH] Fix container Function App deployments Deploying to a Function App provisioned as a container (kind: functionapp,linux,container) sent a zip package to a site that could never accept one, and ZipDeployClient polled forever with no output. functionAppTarget now fetches site properties once up front and routes container-configured services to a container deploy, failing fast with an actionable error when the service and site disagree in either direction. Giving Function Apps their own deploy flow also drops the App Service slot resolution they silently inherited by delegating to appServiceTarget.Deploy. That inherited path honored AZD_DEPLOY_{SERVICE}_SLOT_NAME, prompted when slots existed, and hard-failed under --no-prompt: untested, undocumented, and at odds with the schema, which disables env for host: function. Function Apps now always deploy to the main site. Supporting changes: - Allow docker/image container configuration for host: function in the v1.0 and alpha azure.yaml schemas, and validate it at initialize time. - Split isContainerDeploy into config-only and config-plus-artifacts checks, and extract newDeployArtifacts to replace four duplicated artifact blocks. - Drop single-caller GetAppServiceContainerConfiguration and return container configuration by value. - Nil-guard GetFunctionAppProperties, which panicked on container sites missing ServerFarmID. - Fix sanitizer precedence in test recording so specific rules are not shadowed by general ones. Adds Test_CLI_Up_Down_ContainerFuncApp with a containerfuncapp sample and recordings, plus unit coverage for the container and zip branches, the mismatch errors, and a guard asserting no slot API is called. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 9fd3eef8-cc72-4e6c-9e21-18d85eefac55 --- cli/azd/AGENTS.md | 3 + cli/azd/docs/environment-variables.md | 2 +- .../docs/recording-functional-tests-guide.md | 34 + .../pkg/azapi/azure_client_functions_test.go | 148 +- cli/azd/pkg/azapi/function_app.go | 25 +- cli/azd/pkg/azapi/webapp.go | 36 +- cli/azd/pkg/azapi/webapp_test.go | 77 + cli/azd/pkg/project/artifact_test.go | 6 +- cli/azd/pkg/project/service_target.go | 30 + .../pkg/project/service_target_appservice.go | 71 +- .../pkg/project/service_target_functionapp.go | 196 +- .../service_target_functionapp_test.go | 411 +- ...t_CLI_Up_Down_ContainerFuncApp.docker.yaml | 82 + .../Test_CLI_Up_Down_ContainerFuncApp.yaml | 39344 ++++++++++++++++ .../samples/containerfuncapp/azure.yaml | 10 + .../samples/containerfuncapp/infra/main.bicep | 37 + .../infra/main.parameters.json | 15 + .../containerfuncapp/infra/resources.bicep | 124 + .../src/function/.dockerignore | 2 + .../containerfuncapp/src/function/Dockerfile | 11 + .../containerfuncapp/src/function/host.json | 11 + .../src/function/package-lock.json | 46 + .../src/function/package.json | 9 + .../src/function/src/functions/hello.js | 14 + cli/azd/test/functional/up_test.go | 78 + cli/azd/test/recording/sanitize.go | 6 +- cli/azd/test/recording/sanitize_test.go | 50 + docs/reference/azure-yaml-schema.md | 25 +- schemas/alpha/azure.yaml.json | 58 +- schemas/v1.0/azure.yaml.json | 58 +- 30 files changed, 40909 insertions(+), 110 deletions(-) create mode 100644 cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.docker.yaml create mode 100644 cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.yaml create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/azure.yaml create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.bicep create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.parameters.json create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/infra/resources.bicep create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/.dockerignore create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/Dockerfile create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/host.json create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package-lock.json create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package.json create mode 100644 cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/src/functions/hello.js create mode 100644 cli/azd/test/recording/sanitize_test.go diff --git a/cli/azd/AGENTS.md b/cli/azd/AGENTS.md index 8961a421b46..236b105fb94 100644 --- a/cli/azd/AGENTS.md +++ b/cli/azd/AGENTS.md @@ -363,11 +363,14 @@ This project uses Go 1.26. Use modern standard library features: - **Search for prior art before adding helpers**: Search `test/`, `pkg/osutil`, and the package under test before adding cleanup, retry, process, or platform-specific helpers. Reuse or promote existing behavior and extract shared test utilities instead of creating parallel implementations - **Isolate persistent user state**: Functional tests that install extensions or mutate config, auth, cache, or other user-level state must set `AZD_CONFIG_DIR` to a dedicated `tempDirWithDiagnostics(t)` directory on the CLI env, preserving both the parent environment and existing CLI env (`append(os.Environ(), cli.Env...)`) and setting `AZURE_DEV_COLLECT_TELEMETRY=no` so the telemetry background writer doesn't hold files open in the temp dir. Tests that only use the existing login should leave `AZD_CONFIG_DIR` unset - **Make cleanup process-safe**: Wait for spawned commands to finish, register cleanup when state is created, and report failures. Use `osutil.RemoveAll` for directories containing executed binaries because Windows may retain transient locks; keep retries at the filesystem boundary instead of adding test sleeps. Since `t.Context()` is canceled before cleanup runs, use a separate bounded context when cleanup needs one +- **Isolate Docker client state**: Functional tests that run local Docker builds or logins should set `DOCKER_CONFIG` to a directory under `tempDirWithDiagnostics(t)`. This prevents parallel tests and Docker Desktop from sharing mutable context metadata or credentials - **Guard fixture type assertions**: Check presence and type with `require` before casting values loaded from maps, JSON, environment files, or recordings. A raw type assertion panic can abort the package and hide the initiating failure - **Use correct env vars for testing**: - Non-interactive mode: `AZD_FORCE_TTY=false` (not `AZD_DEBUG_FORCE_NO_TTY`, which doesn't exist) - No-prompt mode: use the `--no-prompt` flag for core azd commands; `AZD_NO_PROMPT=true` is only used for propagating no-prompt into extension subprocesses - Suppress color: `NO_COLOR=1` — always set in test environments to prevent ANSI escape codes from breaking assertions + - Recording setup: use `AZD_TEST_AZURE_SUBSCRIPTION_ID`, `AZD_TEST_TENANT_ID`, and `AZD_TEST_AZURE_LOCATION`. For multi-tenant user logins, also set `AZURE_TENANT_ID` to prevent azd's tenant picker +- **Keep provision validation consistent between record and playback**: `validation.provision` is a user config key, not an environment variable. Do not disable it only while recording a cassette; either keep it enabled and handle possible warning prompts deterministically or ensure playback uses the same config - **TypeScript test patterns**: Use `catch (e: unknown)` with type assertions, not `catch (e: any)` which bypasses strict mode - **Reasonable timeouts**: Set test timeouts proportional to expected execution time. Don't use 5-minute timeouts for tests that shell out to `azd --help` (which completes in seconds) - **Efficient directory checks**: To check if a directory is empty, use `os.Open` + `f.Readdirnames(1)` instead of `os.ReadDir` which reads the entire listing into memory diff --git a/cli/azd/docs/environment-variables.md b/cli/azd/docs/environment-variables.md index 11872a7b833..9a22784c156 100644 --- a/cli/azd/docs/environment-variables.md +++ b/cli/azd/docs/environment-variables.md @@ -57,7 +57,7 @@ integration. | `AZD_PROVISION_CONCURRENCY` | Maximum number of infrastructure layers to provision in parallel during `azd provision`. Parsed as a positive integer; clamped to a maximum of `64`. When unset, concurrency is unlimited (bounded only by the dependency graph). | | `AZD_DEPLOYMENT_ID_FILE` | Absolute path of a file where `azd` writes ARM deployment IDs in NDJSON format (one JSON line per layer) during `azd provision` or `azd up`. The file is truncated at the start of each provisioning run, and each infrastructure layer appends one line as its ARM deployment starts. Each line has the shape `{"deploymentId":"/subscriptions/.../deployments/","layer":""}` — the `layer` field is empty for non-layered (single-module) provisioning. Consumers should tail/watch the file and parse each line independently; unknown fields must be ignored for forward compatibility. The path must be absolute (relative paths are ignored); the containing directory must already exist and be writable. Lines are only appended when an ARM deployment is actually started — runs short-circuited by the deployment-state cache or canceled by provision validation do not produce output. A process-wide mutex serializes writes so each line is always complete. If the file cannot be written (for example, the parent directory does not exist, the path is not writable, or the path points to a directory rather than a file), provisioning continues and the failure is recorded via the standard log; that output is only visible when `--debug` or `AZD_DEBUG_LOG` is enabled. On Windows, consumers should use a file-watcher pattern that does not keep a read handle open, otherwise new appends may fail. Only Bicep deployments are supported. | | `AZD_UP_CONCURRENCY` | Maximum number of steps to run in parallel during `azd up`. Parsed as a positive integer; clamped to a maximum of `64`. Falls back to `AZD_DEPLOY_CONCURRENCY` when unset. When both are unset, concurrency is unlimited. | -| `AZD_DEPLOY_{SERVICE}_SLOT_NAME` | Sets the App Service deployment slot target for a service. Replace `{SERVICE}` with the uppercase service name (hyphens become underscores). Set to `production` to deploy to the main app, or a slot name (e.g., `staging`). When slots exist and this is not set, `--no-prompt` mode fails with an error listing available targets. | +| `AZD_DEPLOY_{SERVICE}_SLOT_NAME` | Sets the App Service deployment slot target for a service. Replace `{SERVICE}` with the uppercase service name (hyphens become underscores). Set to `production` to deploy to the main app, or a slot name (e.g., `staging`). When slots exist and this is not set, `--no-prompt` mode fails with an error listing available targets. Applies to `host: appservice` only; Function Apps always deploy to the main site. | | `AZD_DEPLOY_{SERVICE}_SKIP_STATUS_CHECK` | If `true`, skips runtime deployment status tracking for the named Linux App Service after zip deploy. Useful when the target web app is intentionally stopped. Parsed as a boolean (`true`/`false`/`1`/`0`). `{SERVICE}` follows the same naming rules as `AZD_DEPLOY_{SERVICE}_SLOT_NAME`. | ## azd exec diff --git a/cli/azd/docs/recording-functional-tests-guide.md b/cli/azd/docs/recording-functional-tests-guide.md index 563b3af8a2b..44157a446fc 100644 --- a/cli/azd/docs/recording-functional-tests-guide.md +++ b/cli/azd/docs/recording-functional-tests-guide.md @@ -295,6 +295,40 @@ Config fallbacks are only consulted when the `CI` environment variable is unset. | Tenant | `AZD_TEST_TENANT_ID` | `defaults.test.tenant` | | Location | `AZD_TEST_AZURE_LOCATION` | `defaults.test.location` | +#### Recommended Local Recording Environment + +Set the test-specific variables before recording so the functional harness does not depend on your regular azd defaults. If your login can access subscriptions in multiple tenants, also set `AZURE_TENANT_ID` to the same tenant. `AZD_TEST_TENANT_ID` configures the test harness, while `AZURE_TENANT_ID` filters azd's own tenant and subscription prompts. + +PowerShell: + +```powershell +$env:AZD_TEST_AZURE_SUBSCRIPTION_ID = "" +$env:AZD_TEST_TENANT_ID = "" +$env:AZD_TEST_AZURE_LOCATION = "eastus2" +$env:AZURE_TENANT_ID = $env:AZD_TEST_TENANT_ID +$env:AZURE_RECORD_MODE = "record" +``` + +Bash: + +```bash +export AZD_TEST_AZURE_SUBSCRIPTION_ID="" +export AZD_TEST_TENANT_ID="" +export AZD_TEST_AZURE_LOCATION="eastus2" +export AZURE_TENANT_ID="$AZD_TEST_TENANT_ID" +export AZURE_RECORD_MODE="record" +``` + +#### Provision Validation Prompts + +Provision-validation warnings can vary with the recording principal's permissions. There is no environment variable that disables local provision validation; use the user-config switch: + +```bash +azd config set validation.provision off +``` + +Keep this setting consistent between recording and playback. + ### Manual Re-recording If you prefer manual control: diff --git a/cli/azd/pkg/azapi/azure_client_functions_test.go b/cli/azd/pkg/azapi/azure_client_functions_test.go index 770d21dbf8d..7a951f5fb0c 100644 --- a/cli/azd/pkg/azapi/azure_client_functions_test.go +++ b/cli/azd/pkg/azapi/azure_client_functions_test.go @@ -31,7 +31,7 @@ func Test_GetFunctionAppProperties(t *testing.T) { response := armappservice.WebAppsClientGetResponse{ Site: armappservice.Site{ Location: new("eastus2"), - Kind: new("funcapp"), + Kind: new("functionapp,linux,container"), Name: new("FUNC_APP_NAME"), Properties: &armappservice.SiteProperties{ DefaultHostName: new("FUNC_APP_NAME.azurewebsites.net"), @@ -45,6 +45,9 @@ func Test_GetFunctionAppProperties(t *testing.T) { Name: new("FUNC_APP_NAME.scm.azurewebsites.net"), }, }, + SiteConfig: &armappservice.SiteConfig{ + LinuxFxVersion: new("DOCKER|registry.azurecr.io/function:latest"), + }, }, }, } @@ -60,6 +63,14 @@ func Test_GetFunctionAppProperties(t *testing.T) { ) require.NoError(t, err) require.Equal(t, []string{"FUNC_APP_NAME.azurewebsites.net"}, props.HostNames) + require.Equal(t, + "/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_ID/"+ + "providers/Microsoft.Web/serverfarms/FUNC_APP_PLAN", + props.ServerFarmID, + ) + require.Len(t, props.HostNameSslStates, 1) + require.True(t, props.ContainerConfiguration.IsLinux) + require.True(t, props.ContainerConfiguration.IsContainer) require.True(t, ran) }) @@ -90,6 +101,141 @@ func Test_GetFunctionAppProperties(t *testing.T) { }) } +func Test_GetFunctionAppPlan(t *testing.T) { + t.Run("Success", func(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := newAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/serverfarms/FUNC_APP_PLAN") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Plan{ + Name: new("FUNC_APP_PLAN"), + SKU: &armappservice.SKUDescription{ + Name: new("FC1"), + Tier: new("FlexConsumption"), + }, + }) + }) + + plan, err := azCli.GetFunctionAppPlan(*mockContext.Context, &AzCliFunctionAppProperties{ + ServerFarmID: "/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_ID/" + + "providers/Microsoft.Web/serverfarms/FUNC_APP_PLAN", + }) + + require.NoError(t, err) + require.Equal(t, "FUNC_APP_PLAN", *plan.Name) + require.Equal(t, "FlexConsumption", *plan.SKU.Tier) + }) + + t.Run("InvalidPlanResourceId", func(t *testing.T) { + azCli := newAzureClientFromMockContext(mocks.NewMockContext(t.Context())) + + plan, err := azCli.GetFunctionAppPlan(t.Context(), &AzCliFunctionAppProperties{ + ServerFarmID: "not-a-resource-id", + }) + + require.Nil(t, plan) + require.Error(t, err) + }) + + t.Run("ApiError", func(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := newAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/serverfarms/FUNC_APP_PLAN") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateEmptyHttpResponse(request, http.StatusNotFound) + }) + + plan, err := azCli.GetFunctionAppPlan(*mockContext.Context, &AzCliFunctionAppProperties{ + ServerFarmID: "/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_ID/" + + "providers/Microsoft.Web/serverfarms/FUNC_APP_PLAN", + }) + + require.Nil(t, plan) + require.Error(t, err) + }) +} + +func Test_DeployFunctionAppUsingZipFileFlexConsumption(t *testing.T) { + props := &AzCliFunctionAppProperties{ + HostNameSslStates: []*armappservice.HostNameSSLState{ + { + HostType: to.Ptr(armappservice.HostTypeRepository), + Name: new("FUNC_APP_NAME_SCM_HOST"), + }, + }, + } + + t.Run("Success", func(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := newAzureClientFromMockContext(mockContext) + + var remoteBuild string + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodPost && + request.URL.Host == "FUNC_APP_NAME_SCM_HOST" && + request.URL.Path == "/api/publish" + }).RespondFn(func(request *http.Request) (*http.Response, error) { + remoteBuild = request.URL.Query().Get("RemoteBuild") + return mocks.CreateHttpResponseWithBody(request, http.StatusAccepted, "deployment-id") + }) + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + request.URL.Host == "FUNC_APP_NAME_SCM_HOST" && + request.URL.Path == "/api/deployments/deployment-id" + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, azsdk.PublishResponse{ + Id: "deployment-id", + Status: azsdk.PublishStatusSuccess, + StatusText: "Deployment successful", + }) + }) + + status, err := azCli.DeployFunctionAppUsingZipFileFlexConsumption( + *mockContext.Context, + "SUBSCRIPTION_ID", + props, + "FUNC_APP_NAME", + bytes.NewReader([]byte("zip")), + true, + ) + + require.NoError(t, err) + require.Equal(t, "Deployment successful", *status) + require.Equal(t, "true", remoteBuild) + }) + + t.Run("PublishError", func(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := newAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodPost && + request.URL.Host == "FUNC_APP_NAME_SCM_HOST" && + request.URL.Path == "/api/publish" + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateEmptyHttpResponse(request, http.StatusBadRequest) + }) + + status, err := azCli.DeployFunctionAppUsingZipFileFlexConsumption( + *mockContext.Context, + "SUBSCRIPTION_ID", + props, + "FUNC_APP_NAME", + bytes.NewReader(nil), + false, + ) + + require.Nil(t, status) + require.ErrorContains(t, err, "publishing zip file") + }) +} + func Test_DeployFunctionAppUsingZipFileRegular(t *testing.T) { props := &AzCliFunctionAppProperties{ HostNames: []string{"FUNC_APP_NAME.azurewebsites.net"}, diff --git a/cli/azd/pkg/azapi/function_app.go b/cli/azd/pkg/azapi/function_app.go index 9f17fd10544..702dde5eea8 100644 --- a/cli/azd/pkg/azapi/function_app.go +++ b/cli/azd/pkg/azapi/function_app.go @@ -18,6 +18,8 @@ type AzCliFunctionAppProperties struct { HostNames []string ServerFarmID string HostNameSslStates []*armappservice.HostNameSSLState + // ContainerConfiguration reports whether the site is provisioned to host a container image. + ContainerConfiguration AppServiceContainerConfiguration } // GetFunctionAppProperties retrieves properties for a function app. @@ -32,11 +34,24 @@ func (cli *AzureClient) GetFunctionAppProperties( return nil, err } - return &AzCliFunctionAppProperties{ - HostNames: []string{*webApp.Properties.DefaultHostName}, - ServerFarmID: *webApp.Properties.ServerFarmID, - HostNameSslStates: webApp.Properties.HostNameSSLStates, - }, nil + if webApp.Properties == nil { + return nil, fmt.Errorf("function app '%s' returned no properties", appName) + } + + // Both fields are optional on the ARM model. ServerFarmID is only required by the zip deploy + // path, so an empty value is surfaced there rather than failing the container path here. + properties := &AzCliFunctionAppProperties{ + HostNameSslStates: webApp.Properties.HostNameSSLStates, + ContainerConfiguration: appServiceContainerConfiguration(webApp), + } + if webApp.Properties.DefaultHostName != nil { + properties.HostNames = []string{*webApp.Properties.DefaultHostName} + } + if webApp.Properties.ServerFarmID != nil { + properties.ServerFarmID = *webApp.Properties.ServerFarmID + } + + return properties, nil } // GetFunctionAppPlan retrieves the app service plan for a function app using pre-fetched properties. diff --git a/cli/azd/pkg/azapi/webapp.go b/cli/azd/pkg/azapi/webapp.go index 3ec56e81714..aed9a4d708c 100644 --- a/cli/azd/pkg/azapi/webapp.go +++ b/cli/azd/pkg/azapi/webapp.go @@ -477,6 +477,34 @@ func (cli *AzureClient) UpdateAppServiceSlotContainerImage( return nil } +// AppServiceContainerConfiguration describes whether an App Service site can host a container image. +type AppServiceContainerConfiguration struct { + IsLinux bool + IsContainer bool +} + +// appServiceContainerConfiguration derives the container-related configuration of a site from its +// `kind` and `linuxFxVersion`. Both signals are optional on the ARM response, so a missing value is +// reported as "not linux" / "not a container" rather than an error. +func appServiceContainerConfiguration( + response *armappservice.WebAppsClientGetResponse, +) AppServiceContainerConfiguration { + configuration := AppServiceContainerConfiguration{} + if response.Kind != nil { + configuration.IsLinux = strings.Contains(strings.ToLower(*response.Kind), "linux") + } + if response.Properties != nil && + response.Properties.SiteConfig != nil && + response.Properties.SiteConfig.LinuxFxVersion != nil { + configuration.IsContainer = strings.HasPrefix( + strings.ToUpper(*response.Properties.SiteConfig.LinuxFxVersion), + "DOCKER|", + ) + } + + return configuration +} + // ValidateAppServiceForContainerDeploy checks that the App Service is configured for container // deployment (Linux kind with an existing DOCKER| linuxFxVersion). Returns an error with // actionable suggestions if the site is not ready for container deployment. @@ -491,7 +519,9 @@ func (cli *AzureClient) ValidateAppServiceForContainerDeploy( return err } - if response.Kind == nil || !strings.Contains(*response.Kind, "linux") { + configuration := appServiceContainerConfiguration(response) + + if !configuration.IsLinux { return fmt.Errorf( "app service '%s' is not configured as a Linux app. "+ "Container deployment requires a Linux App Service Plan. "+ @@ -499,9 +529,7 @@ func (cli *AzureClient) ValidateAppServiceForContainerDeploy( appName) } - if response.Properties == nil || response.Properties.SiteConfig == nil || - response.Properties.SiteConfig.LinuxFxVersion == nil || - !strings.HasPrefix(strings.ToUpper(*response.Properties.SiteConfig.LinuxFxVersion), "DOCKER|") { + if !configuration.IsContainer { return fmt.Errorf( "app service '%s' is not configured for container deployment. "+ "Ensure your infrastructure sets linuxFxVersion to a DOCKER| image "+ diff --git a/cli/azd/pkg/azapi/webapp_test.go b/cli/azd/pkg/azapi/webapp_test.go index 46365033def..3d534b7104a 100644 --- a/cli/azd/pkg/azapi/webapp_test.go +++ b/cli/azd/pkg/azapi/webapp_test.go @@ -339,6 +339,83 @@ func Test_AzureClient_ValidateAppServiceForContainerDeploy(t *testing.T) { require.Error(t, err) assert.Contains(t, err.Error(), "not configured for container deployment") }) + + t.Run("GetError_ReturnsError", func(t *testing.T) { + mockCtx := mocks.NewMockContext(t.Context()) + client := newAzureClientFromMockContext(mockCtx) + + mockCtx.HttpClient.When(func(req *http.Request) bool { + return req.Method == http.MethodGet && + strings.Contains(req.URL.Path, "/Microsoft.Web/sites/my-app") + }).RespondFn(func(req *http.Request) (*http.Response, error) { + return mocks.CreateEmptyHttpResponse(req, http.StatusNotFound) + }) + + err := client.ValidateAppServiceForContainerDeploy(*mockCtx.Context, "SUB", "RG", "my-app") + require.Error(t, err) + }) +} + +func Test_appServiceContainerConfiguration(t *testing.T) { + t.Parallel() + + tests := []struct { + name string + kind *string + siteConfig *armappservice.SiteConfig + expectLinux bool + expectContainer bool + }{ + { + name: "LinuxContainer", + kind: new("functionapp,linux,container"), + siteConfig: &armappservice.SiteConfig{LinuxFxVersion: new("DOCKER|registry/image:tag")}, + expectLinux: true, + expectContainer: true, + }, + { + name: "CaseInsensitive", + kind: new("FUNCTIONAPP,LINUX,CONTAINER"), + siteConfig: &armappservice.SiteConfig{LinuxFxVersion: new("docker|registry/image:tag")}, + expectLinux: true, + expectContainer: true, + }, + { + name: "LinuxCode", + kind: new("functionapp,linux"), + siteConfig: &armappservice.SiteConfig{LinuxFxVersion: new("NODE|20-lts")}, + expectLinux: true, + }, + { + name: "Windows", + kind: new("functionapp"), + siteConfig: &armappservice.SiteConfig{}, + }, + { + name: "MissingProperties", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + t.Parallel() + + var properties *armappservice.SiteProperties + if tt.siteConfig != nil { + properties = &armappservice.SiteProperties{SiteConfig: tt.siteConfig} + } + + configuration := appServiceContainerConfiguration(&armappservice.WebAppsClientGetResponse{ + Site: armappservice.Site{ + Kind: tt.kind, + Properties: properties, + }, + }) + + assert.Equal(t, tt.expectLinux, configuration.IsLinux) + assert.Equal(t, tt.expectContainer, configuration.IsContainer) + }) + } } func Test_AzureClient_UpdateAppServiceAppSettings(t *testing.T) { diff --git a/cli/azd/pkg/project/artifact_test.go b/cli/azd/pkg/project/artifact_test.go index d412968ac55..83d090c29fb 100644 --- a/cli/azd/pkg/project/artifact_test.go +++ b/cli/azd/pkg/project/artifact_test.go @@ -351,7 +351,8 @@ func Test_functionAppTarget_Package(t *testing.T) { } }() - result, err := target.Package(t.Context(), nil, svcCtx, progress) + result, err := target.Package( + t.Context(), &ServiceConfig{Language: ServiceLanguageTypeScript}, svcCtx, progress) progress.Done() require.NoError(t, err) require.NotNil(t, result) @@ -368,7 +369,8 @@ func Test_functionAppTarget_Package(t *testing.T) { } }() - _, err := target.Package(t.Context(), nil, svcCtx, progress) + _, err := target.Package( + t.Context(), &ServiceConfig{Language: ServiceLanguageTypeScript}, svcCtx, progress) progress.Done() require.Error(t, err) assert.Contains(t, err.Error(), "no build result") diff --git a/cli/azd/pkg/project/service_target.go b/cli/azd/pkg/project/service_target.go index efee8d5807d..9fd76815a42 100644 --- a/cli/azd/pkg/project/service_target.go +++ b/cli/azd/pkg/project/service_target.go @@ -8,6 +8,7 @@ import ( "fmt" "strings" + "github.com/azure/azure-dev/cli/azd/internal/mapper" "github.com/azure/azure-dev/cli/azd/pkg/async" "github.com/azure/azure-dev/cli/azd/pkg/azapi" "github.com/azure/azure-dev/cli/azd/pkg/environment" @@ -169,3 +170,32 @@ func checkResourceType(resource *environment.TargetResource, expectedResourceTyp return nil } + +// newDeployArtifacts builds the artifact collection reported by a successful deployment: one +// remote endpoint artifact per endpoint, followed by the target resource itself. A target resource +// that cannot be mapped to an artifact is omitted rather than failing the deployment. +func newDeployArtifacts( + endpoints []string, + targetResource *environment.TargetResource, +) (ArtifactCollection, error) { + artifacts := ArtifactCollection{} + + for _, endpoint := range endpoints { + if err := artifacts.Add(&Artifact{ + Kind: ArtifactKindEndpoint, + Location: endpoint, + LocationKind: LocationKindRemote, + }); err != nil { + return nil, fmt.Errorf("failed to add endpoint artifact: %w", err) + } + } + + var resourceArtifact *Artifact + if err := mapper.Convert(targetResource, &resourceArtifact); err == nil { + if err := artifacts.Add(resourceArtifact); err != nil { + return nil, fmt.Errorf("failed to add resource artifact: %w", err) + } + } + + return artifacts, nil +} diff --git a/cli/azd/pkg/project/service_target_appservice.go b/cli/azd/pkg/project/service_target_appservice.go index b93376b4e11..18ff767e527 100644 --- a/cli/azd/pkg/project/service_target_appservice.go +++ b/cli/azd/pkg/project/service_target_appservice.go @@ -11,7 +11,6 @@ import ( "strconv" "strings" - "github.com/azure/azure-dev/cli/azd/internal/mapper" "github.com/azure/azure-dev/cli/azd/pkg/async" "github.com/azure/azure-dev/cli/azd/pkg/azapi" "github.com/azure/azure-dev/cli/azd/pkg/environment" @@ -72,7 +71,7 @@ func (st *appServiceTarget) Package( // 1. Local docker build: container artifact already present from framework service // 2. Remote build (docker.RemoteBuild): no artifacts from Package phase by design // 3. Dotnet-publish docker: no artifacts from Package phase by design - if st.isContainerDeploy(serviceConfig, serviceContext) { + if isContainerDeploy(serviceConfig, serviceContext) { return &ServicePackageResult{}, nil } @@ -124,7 +123,7 @@ func (st *appServiceTarget) Publish( // Gate on service configuration, not just artifact presence. // Remote build and dotnet-publish docker flows produce no package artifacts by design; // ContainerHelper.Publish handles everything (build + push) in those modes. - if !st.isContainerDeploy(serviceConfig, serviceContext) { + if !isContainerDeploy(serviceConfig, serviceContext) { return &ServicePublishResult{}, nil } @@ -288,23 +287,9 @@ func (st *appServiceTarget) containerDeploy( return nil, err } - artifacts := ArtifactCollection{} - - for _, endpoint := range endpoints { - if err := artifacts.Add(&Artifact{ - Kind: ArtifactKindEndpoint, - Location: endpoint, - LocationKind: LocationKindRemote, - }); err != nil { - return nil, fmt.Errorf("failed to add endpoint artifact: %w", err) - } - } - - var resourceArtifact *Artifact - if err := mapper.Convert(targetResource, &resourceArtifact); err == nil { - if err := artifacts.Add(resourceArtifact); err != nil { - return nil, fmt.Errorf("failed to add resource artifact: %w", err) - } + artifacts, err := newDeployArtifacts(endpoints, targetResource) + if err != nil { + return nil, err } return &ServiceDeployResult{ @@ -405,25 +390,9 @@ func (st *appServiceTarget) zipDeploy( return nil, err } - artifacts := ArtifactCollection{} - - // Add endpoints as artifacts - for _, endpoint := range endpoints { - if err := artifacts.Add(&Artifact{ - Kind: ArtifactKindEndpoint, - Location: endpoint, - LocationKind: LocationKindRemote, - }); err != nil { - return nil, fmt.Errorf("failed to add endpoint artifact: %w", err) - } - } - - // Add resource artifact - var resourceArtifact *Artifact - if err := mapper.Convert(targetResource, &resourceArtifact); err == nil { - if err := artifacts.Add(resourceArtifact); err != nil { - return nil, fmt.Errorf("failed to add resource artifact: %w", err) - } + artifacts, err := newDeployArtifacts(endpoints, targetResource) + if err != nil { + return nil, err } return &ServiceDeployResult{ @@ -637,17 +606,23 @@ func (st *appServiceTarget) validateTargetResource( return nil } -// isContainerDeploy returns true when the service is configured for container deployment. -// For App Service, container deployment is triggered by language=docker, docker.path set -// (polyglot containerization), or a pre-built image. -func (st *appServiceTarget) isContainerDeploy(serviceConfig *ServiceConfig, serviceContext *ServiceContext) bool { - if serviceConfig.Language == ServiceLanguageDocker || serviceConfig.Docker.Path != "" { - return true - } - if _, found := serviceContext.Package.FindFirst(WithKind(ArtifactKindContainer)); found { +// containerConfigured returns true when the service configuration asks for a container deployment: +// language=docker, docker.path set (polyglot containerization), or a pre-built image. +func containerConfigured(serviceConfig *ServiceConfig) bool { + return serviceConfig.Language == ServiceLanguageDocker || + serviceConfig.Docker.Path != "" || + !serviceConfig.Image.Empty() +} + +// isContainerDeploy returns true when the service is configured for container deployment, or when +// the framework service already produced a container artifact during packaging. +func isContainerDeploy(serviceConfig *ServiceConfig, serviceContext *ServiceContext) bool { + if containerConfigured(serviceConfig) { return true } - return false + + _, found := serviceContext.Package.FindFirst(WithKind(ArtifactKindContainer)) + return found } // validateContainerConfig is a no-op; polyglot containerization is now supported via the diff --git a/cli/azd/pkg/project/service_target_functionapp.go b/cli/azd/pkg/project/service_target_functionapp.go index 2b9f844dc7e..9bd7fdc4ee1 100644 --- a/cli/azd/pkg/project/service_target_functionapp.go +++ b/cli/azd/pkg/project/service_target_functionapp.go @@ -14,7 +14,6 @@ import ( "strings" "github.com/azure/azure-dev/cli/azd/internal" - "github.com/azure/azure-dev/cli/azd/internal/mapper" "github.com/azure/azure-dev/cli/azd/pkg/async" "github.com/azure/azure-dev/cli/azd/pkg/azapi" "github.com/azure/azure-dev/cli/azd/pkg/environment" @@ -103,28 +102,69 @@ type functionAppTarget struct { env *environment.Environment cli *azapi.AzureClient console input.Console + // containerTarget handles the phases that are identical to App Service container deployments + // (tool discovery, packaging, and publishing the image to ACR). Deployment is handled locally + // because Function Apps do not support azd's App Service deployment slot workflow. + containerTarget ServiceTarget } // NewFunctionAppTarget creates a new instance of the Function App target func NewFunctionAppTarget( env *environment.Environment, + envManager environment.Manager, + containerHelper *ContainerHelper, azCli *azapi.AzureClient, console input.Console, ) ServiceTarget { return &functionAppTarget{ - env: env, - cli: azCli, - console: console, + env: env, + cli: azCli, + console: console, + containerTarget: NewAppServiceTarget(env, envManager, containerHelper, azCli, console), } } // Gets the required external tools for the Function app func (f *functionAppTarget) RequiredExternalTools(ctx context.Context, serviceConfig *ServiceConfig) []tools.ExternalTool { + if containerConfigured(serviceConfig) { + return f.containerTarget.RequiredExternalTools(ctx, serviceConfig) + } return []tools.ExternalTool{} } // Initializes the function app target func (f *functionAppTarget) Initialize(ctx context.Context, serviceConfig *ServiceConfig) error { + if err := validateFunctionAppContainerConfig(serviceConfig); err != nil { + return err + } + if containerConfigured(serviceConfig) { + return f.containerTarget.Initialize(ctx, serviceConfig) + } + return nil +} + +// validateFunctionAppContainerConfig rejects service configurations that mix code and container +// deployment settings, before any Azure resources are contacted. +func validateFunctionAppContainerConfig(serviceConfig *ServiceConfig) error { + if !serviceConfig.Image.Empty() && + serviceConfig.Language != ServiceLanguageNone && + serviceConfig.Language != ServiceLanguageDocker { + return &internal.ErrorWithSuggestion{ + Err: fmt.Errorf( + "pre-built image deployments cannot use source language '%s'", + serviceConfig.Language, + ), + Suggestion: "Remove 'language' or set 'language: docker' when using 'image'.", + } + } + + if containerConfigured(serviceConfig) && serviceConfig.RemoteBuild != nil { + return &internal.ErrorWithSuggestion{ + Err: fmt.Errorf("top-level 'remoteBuild' is only supported for code-based function deployments"), + Suggestion: "Remove the top-level setting and use 'docker.remoteBuild' for container deployments.", + } + } + return nil } @@ -135,6 +175,10 @@ func (f *functionAppTarget) Package( serviceContext *ServiceContext, progress *async.Progress[ServiceProgress], ) (*ServicePackageResult, error) { + if isContainerDeploy(serviceConfig, serviceContext) { + return f.containerTarget.Package(ctx, serviceConfig, serviceContext, progress) + } + // Extract build artifact from service context var buildPath string if artifact, found := serviceContext.Package.FindFirst(WithKind(ArtifactKindDirectory)); found { @@ -176,10 +220,22 @@ func (f *functionAppTarget) Publish( progress *async.Progress[ServiceProgress], publishOptions *PublishOptions, ) (*ServicePublishResult, error) { + if isContainerDeploy(serviceConfig, serviceContext) { + return f.containerTarget.Publish( + ctx, + serviceConfig, + serviceContext, + targetResource, + progress, + publishOptions, + ) + } + return &ServicePublishResult{}, nil } -// Deploys the prepared zip archive using Zip deploy to the Azure App Service resource +// Deploys the packaged service to the Azure Function App resource. Container services update the +// site's image reference; code services are uploaded through zip deploy. func (f *functionAppTarget) Deploy( ctx context.Context, serviceConfig *ServiceConfig, @@ -191,6 +247,104 @@ func (f *functionAppTarget) Deploy( return nil, fmt.Errorf("validating target resource: %w", err) } + // Fetch site properties up front so an incompatible site is reported before any upload is + // attempted. Zip deploying to a container site leaves the deployment API polling indefinitely. + props, err := f.cli.GetFunctionAppProperties( + ctx, + targetResource.SubscriptionId(), + targetResource.ResourceGroupName(), + targetResource.ResourceName(), + ) + if err != nil { + return nil, fmt.Errorf("fetching function app properties: %w", err) + } + + if isContainerDeploy(serviceConfig, serviceContext) { + return f.containerDeploy(ctx, serviceConfig, serviceContext, targetResource, props, progress) + } + + return f.zipDeploy(ctx, serviceConfig, serviceContext, targetResource, props, progress) +} + +// containerDeploy points the Function App at the container image published to the registry. +// Unlike App Service, Function Apps always deploy to the main site: azd does not support deployment +// slots for this host, so no slot resolution or prompting takes place. +func (f *functionAppTarget) containerDeploy( + ctx context.Context, + serviceConfig *ServiceConfig, + serviceContext *ServiceContext, + targetResource *environment.TargetResource, + props *azapi.AzCliFunctionAppProperties, + progress *async.Progress[ServiceProgress], +) (*ServiceDeployResult, error) { + artifact, found := serviceContext.Publish.FindFirst(WithKind(ArtifactKindContainer)) + if !found || artifact.Location == "" { + return nil, fmt.Errorf("no container image found in publish artifacts for service: %s", serviceConfig.Name) + } + + if !props.ContainerConfiguration.IsContainer { + return nil, &internal.ErrorWithSuggestion{ + Err: fmt.Errorf( + "function app '%s' is configured for zip deployment, "+ + "but service '%s' is configured for container deployment", + targetResource.ResourceName(), + serviceConfig.Name, + ), + Suggestion: "Update your infrastructure to provision a Linux function app whose 'linuxFxVersion' " + + "is set to a 'DOCKER|' value, or configure the service for zip deployment by removing " + + "'language: docker', 'docker.path', and 'image'.", + } + } + + progress.SetProgress(NewServiceProgress("Updating container image")) + if err := f.cli.UpdateAppServiceContainerImage( + ctx, + targetResource.SubscriptionId(), + targetResource.ResourceGroupName(), + targetResource.ResourceName(), + artifact.Location, + ); err != nil { + return nil, fmt.Errorf("deploying container to function app %s: %w", serviceConfig.Name, err) + } + + progress.SetProgress(NewServiceProgress("Fetching endpoints for function app")) + endpoints, err := f.Endpoints(ctx, serviceConfig, targetResource) + if err != nil { + return nil, err + } + + artifacts, err := newDeployArtifacts(endpoints, targetResource) + if err != nil { + return nil, err + } + + return &ServiceDeployResult{ + Artifacts: artifacts, + }, nil +} + +// zipDeploy uploads the packaged zip archive using the Function App deployment API. +func (f *functionAppTarget) zipDeploy( + ctx context.Context, + serviceConfig *ServiceConfig, + serviceContext *ServiceContext, + targetResource *environment.TargetResource, + props *azapi.AzCliFunctionAppProperties, + progress *async.Progress[ServiceProgress], +) (*ServiceDeployResult, error) { + if props.ContainerConfiguration.IsContainer { + return nil, &internal.ErrorWithSuggestion{ + Err: fmt.Errorf( + "function app '%s' is configured for container deployment, "+ + "but service '%s' is configured for zip deployment", + targetResource.ResourceName(), + serviceConfig.Name, + ), + Suggestion: "Configure the service for container deployment using 'language: docker', " + + "'docker.path', or 'image'.", + } + } + // Extract zip package from service context var zipFilePath string if artifact, found := serviceContext.Package.FindFirst(WithKind(ArtifactKindArchive)); found { @@ -207,16 +361,6 @@ func (f *functionAppTarget) Deploy( defer zipFile.Close() - props, err := f.cli.GetFunctionAppProperties( - ctx, - targetResource.SubscriptionId(), - targetResource.ResourceGroupName(), - targetResource.ResourceName(), - ) - if err != nil { - return nil, fmt.Errorf("fetching function app properties: %w", err) - } - plan, err := f.cli.GetFunctionAppPlan(ctx, props) if err != nil { return nil, fmt.Errorf("determining function app plan type: %w", err) @@ -269,25 +413,9 @@ func (f *functionAppTarget) Deploy( return nil, err } - artifacts := ArtifactCollection{} - - // Add endpoints as artifacts - for _, endpoint := range endpoints { - if err := artifacts.Add(&Artifact{ - Kind: ArtifactKindEndpoint, - Location: endpoint, - LocationKind: LocationKindRemote, - }); err != nil { - return nil, fmt.Errorf("failed to add endpoint artifact: %w", err) - } - } - - // Add resource artifact - var resourceArtifact *Artifact - if err := mapper.Convert(targetResource, &resourceArtifact); err == nil { - if err := artifacts.Add(resourceArtifact); err != nil { - return nil, fmt.Errorf("failed to add resource artifact: %w", err) - } + artifacts, err := newDeployArtifacts(endpoints, targetResource) + if err != nil { + return nil, err } return &ServiceDeployResult{ diff --git a/cli/azd/pkg/project/service_target_functionapp_test.go b/cli/azd/pkg/project/service_target_functionapp_test.go index 5ce02a493e2..431533901f1 100644 --- a/cli/azd/pkg/project/service_target_functionapp_test.go +++ b/cli/azd/pkg/project/service_target_functionapp_test.go @@ -4,17 +4,26 @@ package project import ( + "net/http" "os" "path/filepath" "strings" "testing" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appservice/armappservice/v2" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" "github.com/azure/azure-dev/cli/azd/internal" + "github.com/azure/azure-dev/cli/azd/pkg/async" "github.com/azure/azure-dev/cli/azd/pkg/azapi" "github.com/azure/azure-dev/cli/azd/pkg/environment" + "github.com/azure/azure-dev/cli/azd/pkg/osutil" + "github.com/azure/azure-dev/cli/azd/pkg/tools/docker" + "github.com/azure/azure-dev/cli/azd/test/mocks" + "github.com/azure/azure-dev/cli/azd/test/mocks/mockazapi" + "github.com/azure/azure-dev/cli/azd/test/mocks/mockenv" ) func TestNewFunctionAppTargetTypeValidation(t *testing.T) { @@ -441,25 +450,413 @@ func TestResolveFunctionAppRemoteBuild_TypeScriptParity(t *testing.T) { func Test_NewFunctionAppTarget(t *testing.T) { env := environment.NewWithValues("test-env", nil) - target := NewFunctionAppTarget(env, nil, nil) + target := NewFunctionAppTarget(env, nil, nil, nil, nil) require.NotNil(t, target) } func Test_functionAppTarget_RequiredExternalTools(t *testing.T) { - target := NewFunctionAppTarget(nil, nil, nil) - result := target.RequiredExternalTools(t.Context(), nil) + target := NewFunctionAppTarget(nil, nil, nil, nil, nil) + result := target.RequiredExternalTools(t.Context(), &ServiceConfig{Language: ServiceLanguageTypeScript}) assert.Empty(t, result) } func Test_functionAppTarget_Initialize(t *testing.T) { - target := NewFunctionAppTarget(nil, nil, nil) - err := target.Initialize(t.Context(), nil) + target := NewFunctionAppTarget(nil, nil, nil, nil, nil) + err := target.Initialize(t.Context(), &ServiceConfig{Language: ServiceLanguageTypeScript}) require.NoError(t, err) } +// Initialize must run the container config validation, not merely expose it as a helper. +func Test_functionAppTarget_Initialize_RejectsInvalidContainerConfig(t *testing.T) { + target := NewFunctionAppTarget(nil, nil, nil, nil, nil) + err := target.Initialize(t.Context(), &ServiceConfig{ + Language: ServiceLanguageDocker, + RemoteBuild: new(true), + }) + require.ErrorContains(t, err, "top-level 'remoteBuild'") +} + +func Test_validateFunctionAppContainerConfig(t *testing.T) { + tests := []struct { + name string + serviceConfig *ServiceConfig + errorContains string + }{ + { + name: "CodeRemoteBuild", + serviceConfig: &ServiceConfig{ + Language: ServiceLanguageTypeScript, + RemoteBuild: new(true), + }, + }, + { + name: "DockerRemoteBuild", + serviceConfig: &ServiceConfig{ + Language: ServiceLanguageTypeScript, + Docker: DockerProjectOptions{ + Path: "./Dockerfile", + RemoteBuild: true, + }, + }, + }, + { + name: "PreBuiltImageWithoutLanguage", + serviceConfig: &ServiceConfig{ + Image: osutil.NewExpandableString("registry.azurecr.io/function:latest"), + }, + }, + { + name: "PreBuiltImageWithDockerLanguage", + serviceConfig: &ServiceConfig{ + Language: ServiceLanguageDocker, + Image: osutil.NewExpandableString("registry.azurecr.io/function:latest"), + }, + }, + { + name: "PreBuiltImageWithSourceLanguage", + serviceConfig: &ServiceConfig{ + Language: ServiceLanguageTypeScript, + Image: osutil.NewExpandableString("registry.azurecr.io/function:latest"), + }, + errorContains: "pre-built image deployments cannot use source language 'ts'", + }, + { + name: "ContainerWithTopLevelRemoteBuild", + serviceConfig: &ServiceConfig{ + Language: ServiceLanguageDocker, + RemoteBuild: new(true), + }, + errorContains: "top-level 'remoteBuild' is only supported for code-based function deployments", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := validateFunctionAppContainerConfig(tt.serviceConfig) + if tt.errorContains == "" { + require.NoError(t, err) + } else { + require.ErrorContains(t, err, tt.errorContains) + } + }) + } +} + func Test_functionAppTarget_Publish(t *testing.T) { - target := NewFunctionAppTarget(nil, nil, nil) - result, err := target.Publish(t.Context(), nil, nil, nil, nil, nil) + target := NewFunctionAppTarget(nil, nil, nil, nil, nil) + result, err := target.Publish( + t.Context(), + &ServiceConfig{Language: ServiceLanguageTypeScript}, + NewServiceContext(), + nil, + nil, + nil, + ) require.NoError(t, err) require.NotNil(t, result) } + +func Test_functionAppTarget_RequiredExternalTools_Container(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + dockerCli := docker.NewCli(mockContext.CommandRunner) + containerHelper := NewContainerHelper( + nil, nil, nil, nil, dockerCli, nil, mockContext.Console, nil) + target := NewFunctionAppTarget(nil, nil, containerHelper, nil, mockContext.Console) + + tools := target.RequiredExternalTools(*mockContext.Context, &ServiceConfig{ + Language: ServiceLanguageTypeScript, + Docker: DockerProjectOptions{Path: "./Dockerfile"}, + }) + + assert.NotEmpty(t, tools) +} + +func Test_functionAppTarget_Package_Container(t *testing.T) { + serviceContext := NewServiceContext() + require.NoError(t, serviceContext.Package.Add(&Artifact{ + Kind: ArtifactKindContainer, + Location: "function:latest", + LocationKind: LocationKindLocal, + })) + + target := NewFunctionAppTarget(nil, nil, nil, nil, nil) + result, err := target.Package( + t.Context(), + &ServiceConfig{Language: ServiceLanguageDocker}, + serviceContext, + async.NewNoopProgress[ServiceProgress](), + ) + + require.NoError(t, err) + require.Empty(t, result.Artifacts) +} + +func Test_functionAppTarget_Publish_PreBuiltImage(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + env := environment.New("test") + envManager := &mockenv.MockEnvManager{} + envManager.On("Save", mock.Anything, mock.Anything).Return(nil) + + serviceContext := NewServiceContext() + require.NoError(t, serviceContext.Package.Add(&Artifact{ + Kind: ArtifactKindContainer, + Location: "registry.azurecr.io/function:latest", + LocationKind: LocationKindLocal, + })) + + target := NewFunctionAppTarget(env, envManager, nil, nil, mockContext.Console) + result, err := target.Publish( + *mockContext.Context, + &ServiceConfig{ + Name: "function", + Image: osutil.NewExpandableString("registry.azurecr.io/function:latest"), + }, + serviceContext, + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + nil, + ) + + require.NoError(t, err) + artifact, found := result.Artifacts.FindFirst(WithKind(ArtifactKindContainer)) + require.True(t, found) + assert.Equal(t, "registry.azurecr.io/function:latest", artifact.Location) + assert.Equal(t, artifact.Location, env.GetServiceProperty("function", "IMAGE_NAME")) +} + +func Test_functionAppTarget_Deploy_Container(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + updateCalled := false + slotsCalled := false + + mockContext.HttpClient.When(func(request *http.Request) bool { + return strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME/slots") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + slotsCalled = true + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.WebAppCollection{}) + }) + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodPatch && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + updateCalled = true + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{}) + }) + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{ + Kind: new("functionapp,linux,container"), + Properties: &armappservice.SiteProperties{ + DefaultHostName: new("function.azurewebsites.net"), + SiteConfig: &armappservice.SiteConfig{ + LinuxFxVersion: new("DOCKER|placeholder:latest"), + }, + }, + }) + }) + + serviceContext := NewServiceContext() + require.NoError(t, serviceContext.Publish.Add(&Artifact{ + Kind: ArtifactKindContainer, + Location: "registry.azurecr.io/function:latest", + LocationKind: LocationKindRemote, + })) + target := NewFunctionAppTarget( + environment.New("test"), + nil, + nil, + azCli, + mockContext.Console, + ) + + result, err := target.Deploy( + *mockContext.Context, + &ServiceConfig{Name: "function", Language: ServiceLanguageDocker}, + serviceContext, + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + ) + + require.NoError(t, err) + require.NotNil(t, result) + assert.True(t, updateCalled) + assert.False(t, slotsCalled, "function apps must not resolve deployment slots") +} + +func Test_functionAppTarget_Deploy_ContainerWithoutPublishedImage(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{ + Kind: new("functionapp,linux,container"), + Properties: &armappservice.SiteProperties{ + DefaultHostName: new("function.azurewebsites.net"), + SiteConfig: &armappservice.SiteConfig{ + LinuxFxVersion: new("DOCKER|placeholder:latest"), + }, + }, + }) + }) + + target := NewFunctionAppTarget(nil, nil, nil, azCli, mockContext.Console) + _, err := target.Deploy( + *mockContext.Context, + &ServiceConfig{Name: "function", Language: ServiceLanguageDocker}, + NewServiceContext(), + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + ) + + require.ErrorContains(t, err, "no container image found in publish artifacts") +} + +// A container service targeting a site provisioned for code must fail before the image update. +func Test_functionAppTarget_Deploy_ContainerServiceOnCodeSite(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodPatch + }).RespondFn(func(request *http.Request) (*http.Response, error) { + require.Fail(t, "container image must not be updated on a code function app") + return nil, nil + }) + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{ + Kind: new("functionapp,linux"), + Properties: &armappservice.SiteProperties{ + DefaultHostName: new("function.azurewebsites.net"), + SiteConfig: &armappservice.SiteConfig{LinuxFxVersion: new("NODE|20-lts")}, + }, + }) + }) + + serviceContext := NewServiceContext() + require.NoError(t, serviceContext.Publish.Add(&Artifact{ + Kind: ArtifactKindContainer, + Location: "registry.azurecr.io/function:latest", + LocationKind: LocationKindRemote, + })) + + target := NewFunctionAppTarget(nil, nil, nil, azCli, mockContext.Console) + _, err := target.Deploy( + *mockContext.Context, + &ServiceConfig{Name: "function", Language: ServiceLanguageDocker}, + serviceContext, + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + ) + + require.Error(t, err) + assert.ErrorContains(t, err, "configured for zip deployment") + assert.ErrorContains(t, err, "configured for container deployment") +} + +func Test_functionAppTarget_Deploy_ContainerMismatchFailsBeforeZip(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{ + Kind: new("functionapp,linux,container"), + Properties: &armappservice.SiteProperties{ + DefaultHostName: new("function.azurewebsites.net"), + ServerFarmID: new( + "/subscriptions/SUB_ID/resourceGroups/RG_ID/providers/Microsoft.Web/serverfarms/PLAN", + ), + SiteConfig: &armappservice.SiteConfig{ + LinuxFxVersion: new("DOCKER|registry.azurecr.io/function:latest"), + }, + }, + }) + }) + + target := NewFunctionAppTarget(nil, nil, nil, azCli, mockContext.Console) + _, err := target.Deploy( + *mockContext.Context, + &ServiceConfig{Name: "function", Language: ServiceLanguageTypeScript}, + NewServiceContext(), + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + ) + + require.Error(t, err) + assert.ErrorContains(t, err, "configured for container deployment") + assert.ErrorContains(t, err, "configured for zip deployment") +} + +func Test_functionAppTarget_Deploy_CodeSiteUsesZipPath(t *testing.T) { + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/sites/FUNCTION_APP_NAME") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, armappservice.Site{ + Kind: new("functionapp,linux"), + Properties: &armappservice.SiteProperties{ + DefaultHostName: new("function.azurewebsites.net"), + ServerFarmID: new( + "/subscriptions/SUB_ID/resourceGroups/RG_ID/providers/Microsoft.Web/serverfarms/PLAN", + ), + SiteConfig: &armappservice.SiteConfig{LinuxFxVersion: new("NODE|20-lts")}, + }, + }) + }) + + target := NewFunctionAppTarget(nil, nil, nil, azCli, mockContext.Console) + _, err := target.Deploy( + *mockContext.Context, + &ServiceConfig{Name: "function", Language: ServiceLanguageTypeScript}, + NewServiceContext(), + environment.NewTargetResource( + "SUB_ID", + "RG_ID", + "FUNCTION_APP_NAME", + string(azapi.AzureResourceTypeWebSite), + ), + async.NewNoopProgress[ServiceProgress](), + ) + + require.Error(t, err) + assert.ErrorContains(t, err, "no zip package found") +} diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.docker.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.docker.yaml new file mode 100644 index 00000000000..c7d77417519 --- /dev/null +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.docker.yaml @@ -0,0 +1,82 @@ +version: "1.0" +tool: docker +interactions: + - id: 0 + args: + - login + - --username + - 00000000-0000-0000-0000-000000000000 + - --password-stdin + - acr3byfkdyh5dhvo.azurecr.io + exitCode: 0 + stdout: | + Login Succeeded + stderr: "" + - id: 1 + args: + - push + - acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a:azd-deploy-1784915868 + exitCode: 0 + stdout: | + The push refers to repository [acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a] + c8427225874b: Preparing + 32e32f0e57a8: Preparing + 9b16a5a245b5: Preparing + 5f70bf18a086: Preparing + 5f70bf18a086: Preparing + 1912a67eea21: Preparing + 52ac6a498a03: Preparing + 87968fffff27: Preparing + f7aae33d3499: Preparing + be5529f9aa77: Preparing + d01f68be7f85: Preparing + 053439d6860e: Preparing + db48528e2b54: Preparing + 8e0965299d5f: Preparing + b5dac8c00299: Preparing + 709f4e02b3ab: Preparing + 96dbaf1de84d: Preparing + 763fbc416962: Preparing + a240266af777: Preparing + c2ce5139d8fc: Preparing + 1f88eb931b94: Preparing + b05a96227958: Preparing + b5dac8c00299: Waiting + 709f4e02b3ab: Waiting + 96dbaf1de84d: Waiting + 763fbc416962: Waiting + a240266af777: Waiting + c2ce5139d8fc: Waiting + 1f88eb931b94: Waiting + b05a96227958: Waiting + 87968fffff27: Waiting + f7aae33d3499: Waiting + 053439d6860e: Waiting + be5529f9aa77: Waiting + d01f68be7f85: Waiting + db48528e2b54: Waiting + 52ac6a498a03: Waiting + 8e0965299d5f: Waiting + 9b16a5a245b5: Pushed + c8427225874b: Pushed + 5f70bf18a086: Pushed + 32e32f0e57a8: Pushed + 52ac6a498a03: Pushed + be5529f9aa77: Pushed + d01f68be7f85: Pushed + f7aae33d3499: Pushed + 053439d6860e: Pushed + db48528e2b54: Pushed + 8e0965299d5f: Pushed + 87968fffff27: Pushed + 763fbc416962: Pushed + 709f4e02b3ab: Pushed + c2ce5139d8fc: Pushed + 96dbaf1de84d: Pushed + 1912a67eea21: Pushed + a240266af777: Pushed + 1f88eb931b94: Pushed + b05a96227958: Pushed + b5dac8c00299: Pushed + azd-deploy-1784915868: digest: sha256:d57a559cd4aee4066f64fa5b715262bb3bf3ae047c6c10275dd827792e1b399e size: 4928 + stderr: "" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.yaml new file mode 100644 index 00000000000..4155b0171c4 --- /dev/null +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerFuncApp.yaml @@ -0,0 +1,39344 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://aka.ms:443/azd/extensions/registry + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 17:58:02 GMT + Expires: + - Fri, 24 Jul 2026 17:58:02 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 108.283ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: raw.githubusercontent.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415965 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.3.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c130f6534223fa998bffc6716b3db4dde86b420053e4e41e780d4b7961e891b9" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcc6d26d044362ab23bb82c59452d9967bdf5d2dec1b67cf56a7e035e93f248f" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "673a66c3ab482e27b055534be13f3ff61970eac9cc1a559663ee5e77efc22c35" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2e41ce4464989e0c3ad401c7ce84ae0cb5e5287abe2e60d901a790fde0fb7ea3" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ddc09442c399e6597931b364a0e38f3712b5fe932b3270fc4f722b10d45df36" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7026c30919eeb5bdb6e80d6a2afb2a8614259137b9646607f58e5a231d3276f4" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e68599435a5854f7e8a96f5f93d5a602531e5416617b595f6db71c6f27ef161" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b8496560b936d3ce7ecc890cdc892ec2dabd3e17a41d3e8b81e3dc8f1e6ac79" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e87e451548036d5eea41c740d2125a174c46f3518626ca7d570c09c9aefbd8be" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f9dfd652a0d67fa525ec1772ab346c1b0f253bba8e4f3b66869f0ff5173a9622" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f408d344ce24cb010feed3c6a97dd923296a67f0af28ae01a9539aaa4a0bfa82" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6439232a8b3218ecc64abbd34ee2c76e3eab3ab8aa60f7d79aec72ad08c0c38" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "79ee739ef1e7ef1c57ca894e0970ba0c27f088d8b804d0c2fc0d47b1b014c910" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a9cc1d960260fe6f01bdcccdeed4f7f2509a84b3ae7a274a33562fbd0880f145" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2a501bd3123f5599c64853b65709161e77874b8a1c87dcced08e217474bb2383" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fc0a310676dc575de2ed0c145decf39bc60b26b49118459f530207305637ade" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "64f1c5461bc638bd0fd1092ee042dd99ca14d9fe083ac55ae642313b6e980e80" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97a3a1c2cc34877194f7d6888ca07904b5a4323542158540f21aa6c099ad990e" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.extensions", + "namespace": "x", + "displayName": "azd extensions Developer Kit", + "description": "This extension provides a set of tools for azd extension developers to test and debug their extensions.", + "versions": [ + { + "version": "0.4.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "82c417090c5db778ecc8c99a90dd55af3a2cc4418c5aa6f30aa63c2bc8f1d747" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3972b447027a4335126407e5a7dde02273ed90f8851bdd11acb0df7ea99a10ae" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2fae81971e8767f1ff70748c791e5ca1e0caa5020ec9c48d573d3bf190004bdc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf413931238d79b26bed1242e59fb80c9e922c9385696598496f63389fc9ef" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1d8efcce9b68d8a7bc09227fffa0313254d4dbf8c3f64e8085ba2a0283010279" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a2dc779583d722b338d6fa146e9d3dc6d491f9134762dc0f844d81ab06f0548f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8f9fcaa723052db4c2759e5786cd6aaef59657eee16085cb10d68d4eab34e98" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d47f6333f59e489c9f32c24f3abdb945235b8629abc6d2157e30f1b91814d9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d2f6823fdb3f2343cd5de9e0cd740af9b59faf48cfa07f9b4f8a96a0d7d51f9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10a88883a3144e2d577755972cf9c958bb7bf99946c2ef09c9fbd7f6bc522418" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "011e4433cb1e1ff15cd8b7b20e3b3db90ac86476ee1a6ee86b44a118b553a34c" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81e21c0591073af8759073cdc0aa5356350b29dfa565d4296d81770eb9250155" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29d7667e5c5fe398b2bc2d49d8cd50c4ec2d7a80af39b5dc2661e0a279096b07" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "89ba0413718ab42271d70e723ae5c568dd4641e35de91623cb43590ce44b1c08" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "633bed7f65b7c7fdf38f264f9ee17f2b5421ad086a19deffff6e91f6409b0da1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fac18d7791a94f292f959bdb5e9d871577462d25fd2a0c6934308b812e1d69df" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b969de90f1639b05bb5b9bd379f50fac2f731ad48fc773a6a8d2e478efc49495" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa1e9644a99e575eeb7925f6db38c942d5116ead358daf52afaab20529dd7b33" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd943d1b6df6b1a7b985c1496fa9966907838300799697590f4c375773e655e8" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.12.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33e5f28ccccbbe199e9b02cac8da43853b50fd15d7d7c5cbc4b4888028b84ae7" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2397247ff6680bc9dce38f6d11a40096059cbce27f03fc0e27dad95fa05d0ebc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb8ca717eb58064064ab3ae6dac01c62a330f231054a953fb558fe787f172852" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "59d5b1a75205300e188e7b14d45dfbc0fda24e0dbe3110a57dea58fa937f9857" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "523b5677e6ed818a749e0a10e4d80d18586e83b299ebedc24b7bf835227ce2ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3d1ddcbf7afbb39827a75359e5cb02ef309b80d26fc83dc82c2032eaebf2e608" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.coding-agent", + "namespace": "coding-agent", + "displayName": "Coding agent configuration extension", + "description": "This extension configures GitHub Copilot Coding Agent access to Azure", + "versions": [ + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e086cdd196108c7b7e6cb2a9e5852009caf3d0128b1fc0bd537764405fb81cb6" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfbc5e06b0f1ae0e8e4a086a1e42e5d7e973a6e818b9b20efb925ac780f82db" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b546f5fb825cb4ad758c535efb2c6414d5b163335974d0f2dd5c959eaee7fbf" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b81c9014dccc2a4d79f31d4d76992e952b5caf96bddd1881b388abb93d8ab88" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bca57dc67b11aaea160696003ef0fa5734ccb57cbbef20cfe6c469360edfdf0" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d2854d9c9bdba79b10a728d96a77d7c9f64f457927c0564292b9b3a40e9a3e6a" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.agents", + "namespace": "ai.agent", + "displayName": "Foundry agents (Beta)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Beta)", + "versions": [ + { + "version": "0.0.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "592dbeca411725b0ee7708a54469dfa05c88451793514731ce083d5a1c20bec5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12293a86ee951d99bc0903e0436573f5da853eeb0f21d894f0fb5c5de670cfdb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81449a1df145676cb20a002a3496177c823873deae31d4ca51edd9ff691d08b6" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "790de2fa0cd241e2daeb487483cbe5c9b1d2f5bb4a904daa753b5a03ac20b632" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d7943130b400a89eac4f1622d34fd1fff10821a14507ea8a0f3a37aaf15697e2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20352ae5d05604ad4ebac5c42b9d4f049afc5f921759a4534967ba672c78448e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06e7865cfed0f7e4b4dad9bde06f4763210b9afb67012676455b50b0c9629432" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.3-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.4-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.5-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.6-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.8-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.9-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.10-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c64121ba9dc31fbfb34d32d9244a21aa409dabf9e06ace243fd53a3baef7afea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90f2a83c05f6821dad45f5245e34c80bc0b07b7a2d3a6d203d68bd768bd12edf" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d386525c926eca66543f3b01446b41b0eaa291ba88c390140f6dcc0d1dbf3954" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "20c97b2b8a8cbc7b3815ebd6b7e6e1cc6b5aaa280187a486c55d651360e3f505" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "abe6ef169a9c302b4e3095840f5bf7f26070c10c81fdeaaa498e2cd82d69766d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41adb6c666d0f88fcd49a45999658c3e6e6e2cd39fe256955362ca86dce5cd78" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.11-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f36b1754b2b810b9bcbf3f7a1b960bd91f97b66156ff686b0d4c2a7ba3ffbfb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cae9de7cbde3ada737f893f357d8b4c0199fc7ac4c6132b426326cfff74eda31" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e5da23e45728034744d1b8b7f06b84e56cb9df0ddc865df9d6b6d249b3e8d0d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e19b59b6f76cb970de5c3bcd42c158d739d691e87cbd46a5e4f545501173abd" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a572a9e3d430898482f80054938aa6709ebb65a8a6df88e727aacaf45e92a872" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "046e9679b9dfa58f5d1c5d4344c7dcb1ecbc72ec2f3df74282709628e501429f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.12-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "86302e1fc56240bc2b78c2747ac53c04af24dc08282c9f287ab64a217b720cb5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "55bfb37e0f0f5400c51f3767ab90a45198f80acc8610f2d2118d7ed5618136f5" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46b60240d9c1972749efb05af3e9a44f3749a921aa79a431e957ba0b666f6402" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ee8f28c2d169854c7faa3c5c95592839c92e674a2edac4e800e0181477e6058" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f26f81c762d32cffda75e9665645ed11ee528eab029e2f6a1334f42f2ca464d8" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f1bf020b2aca5d0d94726705a682c67b8a46e007da6c7b09ca45635f1809929d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.13-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e78bbec69c38c86f9690f98f90d461c6e816c5d2059ab9cf1dd611868c3e44ec" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c4c69e379b3272ede0d892f75efcf08f128ab93e42aac6278e7c9d548f5e841" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b20ac48c1d59991f2fd2eb47c789d95ab441c70ba5abb60a567efdf5c30bb8ea" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3159eb218dcc6b11fa71f00f8debe558bcd481bef7f0c2b0945b1a19eaf38790" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b5453d9af26831aeec9d58eccc96219361fc49794e7eabdf8979b9fb806a675" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3494f5f1205ec5d78f3f725b93182e217f7e9b7e93f53de63bf356c72656fd69" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.14-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c77b6f268659c93f91865a977970a941e36b00f2af2004a60556fd6692d8a28" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dda0c803d1f116325c560e2673d3e803999a84145bc873e2d68a4dfb0b5fca5e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9006a086c3b5d4d1a7819ca50c749075e3cb2bf0520e43c5027ceb1ff072c9f8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d426f8658705012f6672d2c718f392babf0a9e448bdf6adea1736c944406070" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8c7f6d83d55ca7f16f7de2ee41421a90cdc35aea617112fe4d0f169c57d2b90d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4e47b751bccea4518b803a4980bc53453925bc88c75f9c7fd5417116bb468b98" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.15-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf244978094a6a59b33f090af06dd62f71b19fd9b6014a9c02639856cfca87" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe7c8d0d67b94461cedbe12e4ace77ad96bde948ebd1d530aa20f41e219f8d7d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c217ab5583e34e7ff884248b62d3af94a77dc0b3453538b48e559428c5119a5b" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fd4d7e1f0aba957065de343da7cf06cfbed993abfe5da7a0615e913197d8876" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bad25e242dd148c12b5616ecc755f858f65161d78bd0ada2afd7c880cae47de3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9cc2d182f722b19ad22a6f28257b9d06e42c188cd6badd38264be3c410747f53" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.16-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f724bed29577250f7ff443913682247b1833cd05c843f19f942c48e092af588e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c88c0e76bfdfca7266d24d1372f28a047794f068e01d4279ecc993126d28ceb2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5943072ca1a8baee772ce9390ff99abf363258950454149e9e0c117453a5ce2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be8a8652381f658587e99f99b85d1272be02ea563ccdcb43ae77a69de6161166" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b6b033133414b32e74c9a6c01506cb343c02b56f136f68450349e8139b26cc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42f1065dfa623259614078add0cb6a5c1fd7689ffd16e2b54be68ac20f5792b9" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.17-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cafe851463b9329f4284ea41ff161b8deb6e7bc79e2519cda9c83a4413deff0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cd4756b84f0ee721089ea3d3e1e0b47b23d8cf152c1861bd13be29e24c98027f" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4c7ea2edbd8c273ef387d9866c997be079f306ac19534eb8739a0e93b2f3f614" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b1e95a55d31b08d7153b14226d21ad98b138ebf438b9cb4b617ac6e5092389c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbcaaa3b037f5c9d2c9a92e6d40165520ad5fa518689b000df44c279d73a14eb" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2b3ae89d3cd4476f334ce75db4a12329c0f424ecd499941ba298707892fa5146" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.18-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0afd0d07300bff164c2cb46a7b08646ec61501e5dc4bbdc7b5e29246a3875ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9579621bfbd39baacc8f95cfecc2443e4e47c6eff7eeaaadbbb4de5815a250ed" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "25a7d89e61eda8f08ae08f467b198dccc17e5c5b5384e6c3a92113e653fb1584" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90d2b4611311c20179168ddeac0d70083c7106cc0ae0eb692a37dbfc36f922f0" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9fc6877f6e32fcac6e58e9988491eb8ea059ccf25c68dc5f8b213a4d149f7c7" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a860745c473a8b98b57f05cb051fed3fdcd6229065a6b914240d7ffbaa448b44" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.19-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "efebbb67a0437da9ad67191500a6caa0fb28d3f84093bac39d2356a2412dd3ce" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2dda1a039c61dbd45c73251eed5c0b90aafe4345086e0d31cb2f152d80e94e4a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de9491add21ea593e8b2714b7b23bf3eb249bd0088e0323b1fb787c26d8db952" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4227ed50d60ee71978447e6d5218acd06c9a4e97b45584e1f76a7159df1752f8" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "816416f8b5e7a4cf9d5235aca1f140f170caec9cdcb26b0d3854340bcd3b7edd" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c34d427b278f3cc33adfc8592acd5fb638dcead55fdb80c24a8ae220d5d03b1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.20-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7ebdead1c9f6a5e4ed4ecb619654d7cd2167043207d545f2340285b5bf73896e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27deab2e9eeb91d34e3c7a6767bdaa62b5ee69ed766f1029dbb4d51b025cd2db" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5888303efb6e2d67e41b5d78d592b4a8d3097077e6f20267a87d0ea88bd0a438" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "973c938ed1945e745337495978262b13f5fb8aa64718f75f7411669aba713db5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d41544242411dd4b9f2bfca45e66717740ca5ec324de22e45ff1551d71ee74b5" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5f18fae3cc684582b2cd87262c51fad69db16d6514d792f117b2c0f0d831d701" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.21-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "910138effb7da8dddcc623e84679fafb6b2a4b845cd6246854a16a4233d902ea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "587703a9449d81bbd0604b2e92a54a84622bc93c4128cd67a5153317794b1511" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cabdbaeaca0b91180191d1da5ff3840031ce79e4117584ffbe6c5cf991fc21a0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b50bd5ff9d2c4d0d8620b4498ef3debb822007809bd8d583abd7f2db25a74d4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a3569dd67cc01847ce2cfe927431048ff167f7768fd08f53104ed874c8ea9ce3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08b037174eecb07791aabba6ab262eec8efecd313ef0900ff8d6c768ebe99a79" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.22-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b99ea77776b21ec56bf7b3caef1e667873de24b9f63480acb531d3b9b8c7ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3c36c0960222417b104ea40824d08442886ed522a949825365a45d627d8bc8c4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f8b671f04c394d8fd33f50c705e51d1768bd827b0f534ec957277bf1563701a3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29b3d8d9216c7e6111b8dacca4f9fc3f3471e9e68ab2eda98d309556fe273199" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94b1ae318bfd8043d3cff63d72d412389585912b38ee2dbca1fe56e4bbfdf009" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ecda818d9aed29aa83cd5682998aefd6a3b4edae4e4393d4e67e01da2775ef6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.23-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d4f13a93cf123378a4bce6a5e7c9ae354c5beebbb75cda6df15ddd72e2d05e53" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cc821aaf3d9342c2df7ab18a5298f4bed4eff28c86e07d27b2a549287519d189" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a30f75c10eecc07aa061faff750e86bcc972a76294cfe3ac8dcb9b6f88c1c8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c537c9880c2438528d3f3c8bc10e413f9b3805bb853adf446474d1de73e107a1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9a42feb9469927ffbea0815babdb4ca1df167e888e35f481bae4dc4c1f043eef" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33e9f8e38dedac75542e32da4fdf282804e014aff5cd08c457f8240f27d75b30" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.24-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "27c9e937df216c570d4ec5292532f58663cf95ef986bdcc844998efa1bb73082" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5c64a7b0f14dca56649d5444bbb8e7a54d4c0c3a9bdb6c79f9baa9428a2160c7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc786a142560956b5efcdc0a75749ed9ba538c6bb29deb910eedbbe8901d6d98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e452a2f2147dc22408a5d0795061666ceef9ffe4927ce835700596283668931a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75957254fd7470bd66ced0f981961aedac34be48ddd13f92cb4bc4bb53294d5b" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfad02e4cd60529f4f233e2b27ead7227bcc15595c2c2e4981e117fba0d81f7f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.25-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "990bb47e30bb3b8fdbaa123e41b0eb80029c4fee22bafafe7e131c0ae658fe32" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f69309b7f570559db88ff7214334a4fca4dafdbd54eaa35ae428766dbde6576d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0431d1b90c9308f9e5e159a042b358ff2ec9f4565cbbac667856479967db729c" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "63f9f67c7be549f05fe2c3720eb09c5f80436947026a62e1a5c4bdd40586c167" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa44b7325dca43c59576ed5abf131f6f858ed1668c06b308b2f2b2d4d9256217" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce6f3a3a2f6f48d1db333ba607c726032142bdf095d942d2e4ae5044c6ae5622" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.26-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a3cb2d1b71900d20b407f4b5348eca346b7ce0dd74c9a95cc17543f678e94a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8f0a98e8f709283137c2588bf6a713c89da9390a4255b8372939fa4dc3de0d3" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33352dbd47f53e660f996c15bbc7f650865de06c735c8891d0455bf592d3b0b1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d97a577b96bff189e60438424139d9ad112546544f2e64788e5cde2ed51bf83f" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b8c966b418d661678ebcafeba5bca9b9657d092a5a2a1cece289906ae6b07c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "accff36ae2c605244ceb68601630397d58acdee9901f0792b20deb6fedbd31c1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.27-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0e5ec072793d049af3954bdbf6f13868a7ff4573a64d7d0bcf8d213d3b77a0b" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91b0ef8a0138608a67cfabc8c757908c192b42e65c7c06278ce5373f2bed1b08" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e758b845cf21b801d97475a5b36d69bbfb8364a3222733d490b64f13305b9aa9" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "018095dc547b69a384e20ef2d0680a53046cd2d33a43cfce6b26d835df2cd178" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7d27ce8a58a810a2f755637837fcceb8ccdb8e78f1855df389eeb8256357f897" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "00d72d45ae175b5db9ddb28b064020f27fec3076f9edfae6afdeba54aac55560" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.28-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de8a77862a398f0ff9c4f130a90d7bb443812751b02a3c9c5fa0873fbc02d310" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "05e2521fb6e5319be6355a7e363d90a314a56f1c6d425270da33e9ef7555c3e8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0037a09d6a2fc23e4cfe42c0b33f3bbff803caf7a10207e24782cf27018f0b77" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06d246fc1c7368352bd8a50fb531dbefe97bd5a6fc5fa5953a0ae39ed3dff48a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1f6f0707afecc7c984b373d92b78416b0b9b5f019970d63007120ed48c4e7520" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91d57ef3b458a66acada5edd666a4075ecf52551516681e0df1e79a016895dc6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.29-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d512a4a2ac982f65d23ed5e6ce9de355d49286f30191794b879b8afa4109a264" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8e9e38efa6180fd4677c44c9381ed031ceb966d9b9a9fe3e1a86eede73f8178" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab960b783244c1e19e8be378b8b3962f8983b4464e2bf78875b136295c91a2d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7b9202e93753c37270ae00985184d4752d22ba6c61d0e871fa6f549c30b62919" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3b0295ee0823bf60e8bb49a68901d3e0d830d8a458da99647ab6dd4fc3aa5a8f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c274b0fdfc311bdf4dd52a6a5403692d252e214a1cb27c91573223139da428a" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.30-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09993c41d96d51cdc656bbd4f996124280d52e1a0ed2c68bac1cecb23d1da108" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c423b779ee5a7c9e047856d7346d46aadc281ced036dd804a24c4f6f39acedb" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b3fe863959c4b075092d824c1c3003be78a2c6fb0949d12cb03a85fb395e3a14" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5628f47608b8ac16030a9ec5f30c9979c2496cd1a72fe77b8db295a4ada58205" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b2a57f8d305cc42d511c35b9890d7fd20cb46196a677d1fbcc4f8164c961ad85" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abe185385d2607fefd1dc126b72fd1d3f19cc1146bf7ad4d4715858cc70f7cbd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.31-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab396ab8dd3b627e0467e35535f6cb6bb29efb475986f7218cf2322946e4e33a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "919f18a74e4fa85d8b3db74e34e1d41af10b1e9a78fae171be7e42085f8bfef9" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dbcf13152499e43dee123bf8d3a25aba16f2f4cf287975187b9f79b62495cb53" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a84f09164cf0260727e82e1e43ace5aef7a8d3380e0602221d05ece9230fd87" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3a9d3f0358852767babe84ce16fb01e52427458776751e11d2024fd77694a0a" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1ff890de9c6507ff8a2e104e697545e1928eb4f1557a35e06f7c2168478507c3" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.32-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3581ff17669463882b1dc477d2986b6e79c5769df9d0a6e566cd073da6d7f18a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a524908af85bfbbaf822eb0057ea5afa25ac3de3d5e5dc06e3d5a9b56d65957" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "22c694cd87e5c6520fbdc833bc6c14c3d280fb8d554a30c09bf5792df4d8dec3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02033552191d66067ea1af868c1fcfaefd97aeffbc82657f4844e6445a4ec31a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b54ae1214fc50b38a9275e661fe62c756cba99acf2caced9b11defda3e28871" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "62f52c8b70c789b4fa9c0b966be740950dc6df235a944dc052c791c6f611790b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.33-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a080e5dfbf57a9f85b70bd68fb5b1e442cd9928c4f451e69e338b24286eb441" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "53f332fa798dba743ad30e6967402f7eaa2c521f21c4d7ce76f2f1c55ff59628" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "29e47f46aec03efccb0581e3f6f46545c45b074907c77400b809f379a629e5fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38f2e6d72165b8e47b54ebd7e2c9a7d34c30ccb428dd98b4bb7538475794533b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1693f492941c77081b1eb0616fe61c5ce4a25567bc57b72d5963fab7f61f809" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e473201c8c7208f0f41088df4a136e40afbd1fba9f94f880cfb6c1f8b672c469" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.34-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d5ef6fc956a6b843d8653405ba040a89e6fd49232f84946cbea47dbecc2f430" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c530b651a21550a050b899495ab24320a573c79f66b2f0dcd0352509d7f260d4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4e0d9694847b4af6cda6ac48675ff99722887d9fed8907af4f5e83c170f0cc6" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b2d28f0efb9f946059e96b325aa1981285cf2b108e11f475b34d38d1e41585c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42dbcdbd8e8ceaeb79d0f5eb4367401bd89022594af9bd0acd6dea80e4833c22" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0f962b13b5f3794f534ee5f28b7fb912b5693e63a70a552764a0e8dbf5d0f176" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.35-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63fc59f473a9b09cdbc3d6d141a93c06974bb5f5f17849bead025a6f495fb3" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "46dd13c9d28b77b7acf997845316b712e4676da5c40c7b58dbf8b586bf3d9be0" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "44e30aae1e93ee4d255ce66bafc59ad54f11f263f61b6738b3b8253b4d668aec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af0f9d751bf417c5f1da9cbe91aed19b5d367803c736ec6bb2c3c156c0ee1631" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2c332b02783c831f088fa0dc7845479968681c314735075b8e3eadd064c024a2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "332b41979a2257548f9dcc9289470928a5c29f6dee3be484487222f0cbe3d1e4" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.36-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13fbc474e4a13ef3f3ee4ec73dcf8b62ca9a90d5639d0bbd561aba4198418686" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf1e5dc9fa0657985c8cf78c754936279bc64be0827aceaaf3764f3eff955964" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5e7e40ac27507737aa769c96ec81690a45d30312c41e57655d52a87a83b22a8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfffce78ebb65cf2dbbac9994f24a871995580d74128bc629f92c69a669d9fb5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c09b7060caa713e153bb377ef1670f4fcf1febaaeb18fa9a1b843eb55923d899" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e747c3fe88345cbbc30b5a670049171d6ad7662a554652bcbd2ae8e7fe68d35b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.37-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "727c0bc9e580a336344f5780dcc99aac209f99b0ff957fd0727e75738261a122" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c99c8f39e4184b4aeac52d4ae842c63cebfd1cad406fe0bf9c13fbf6dc4358e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7230d3c0d6d74804deec9a643ad54cc1bb06343aa63d467e1072d0ea6e0c7a98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6ad328be144a82069f3bddff7138201f3911846abd869f1cf33a27d205a3f08" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0e110c6966db94516a9f5c0549de6378f8534aabf5bd649eee5d217a5747f21" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2fd1dc5a435d683b92c2fdde6461264f8af66dec7b6e4abd932e0815f13e6ac" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.38-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e47757301e5593d726c82c99ab9a6ab257bdbb5522f2ca6394ecc9a254029e01" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "952a55e94d5f618bc2f220c014294a3cb80e7845972c03c83d88c6c53b7bbc5c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6eacad9938e63d47e451895c9100b0a27669a12791478c5cacf95edd4ae1b200" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "261d6da1779a74f7d87c6bb03c23e1259062b86e27a944a2100ec7ec90cd6ec5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "845ec0d762303e2f8e42a6bc0fcfaa7a2472ec4174ad3b7d3d0a908b9ff9a0c1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d4e955655b4ba7bbc2861c9fc92afb51950a4bc60cc0645864cdfc9a902365ea" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.39-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f008d22a441d3109344d1de47504589a914dcb4843815d7ab1fa439f11a2220e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "65a54011cf84d3f4584e7a88731debf5910208ece0bc084b38b4ab3300fb4e1c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3fa350e2860f9c58bbb7f204cc094b9437e04e19acb51fd9266680494b35fc7e" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "876fdc2551c88de050000550577c8d2a07b994cd791c2916928809bf69a1cdc1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5862e467f6bed6f51cfd8ef8ebb0b249da0fa77d6adf7e9327935099066c577" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8cf4f4009336b82e432c9fc0d7ddbc21631939967a08eedd69b997f1def7d7de" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.40-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab6caea8cd32f65c99d4b552210cf97b022c8cc9686e5569aa4963758f144f86" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf13056b2c912878ed117cc7553914e16d34b29a4ef15b70dd4e6ef670c40543" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0435921a3bfd30e4e9291d145b26f9b6e077a58ef808cc826365f02c7ee492e1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50ae990e010c2766948bfa24096e03677dc06ff28e9483f2a7cc07cc9366331b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b9fd9c5b73878caa73c47220f06cde0888e0722a7da8ccd1ee59465e52f41e9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c413a07c05ac31129cafe32faae0b9c252dc639d0122a6186e420369eaad6e6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.41-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0678e3b75a072b024bc1e50647428931b2737b3104613f152c2dc7ce2f5e289" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5da236120d2f9ed8f8ccbcebec580a2aee212dd351d5a224d8067643b2abb98b" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e1e9babc2319d4f8e72453996caf486e3bdc46d13b6719e45b4bbd0e5942cc8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a690ab21e3f888e0e7eaa19911949952661d673571dca54db45d6f43470e036" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "709d63b47982687ce23b3868db58950f46bcde0520dae87fc1658a48c3bbdc99" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89690db25edda9825785752ad1740d8069148bc8e0264f5b482d86905eb63a01" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57862cea72229938e7bc22c6b9000d497732919386786e3a54c5702c51ab7443" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4af8331d5e9824efbbad0dcb8c55f7098efe1a8d6b26356dc6cb917df2d0222c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "624b22f27b49136965ffc19ee00229dfba819177dd0987afadabc747e0ef0eaa" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bc8c7ffe937751b9f602ca85a49f1be2cae4afeea9f7f3f73f77fc19d6f998e" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c36bee112dd3af5b378c6111b979509c7a23c58ad89657a9adca11c193871f2f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ac34cba2e3e55f42fb5d530e3debc26fb8a152a783852a91899c7e14f84667b5" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6fa75b4cdb2c47d055ab2e82cc1147ea28c294367c40b7925fa47c8cc8ef2dc0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da154c09f367500da02d0e4e25e028ce83694c53f0ca75b6c29ab07ad079de3c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "948ffbcc4f74edc24a47fafc5af382d5934595f54afd20f6dcde00062cb35517" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a45b6fec76d3b3713215e26d00dd37e9c2017b54ec0518156a842cccd5861323" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3eb977ff7a2031024dab366e144594398246e126c9a65526aa7ba3529c8944f1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e63be3171eb638becf9de012e18df91c43737f851100021fe86c1cf98a62558" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa46efea07f5ac886d78804cc0c7bb8d9e6393938a153054d4044dd04b5c4f92" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9c804454a903d7ea6bd119b668d8a28334acdb147247ade59924856922b01e7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "550273bc3ccafa5d8b2df0bcc637d785f7ebb2febe5ea84c89ed0c4822e745fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "371e605d6c65d5464fd3ac4a780f64cb095aaeb9e9177d084358501f21bb72ec" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c5da3ae9b7dc94e170a60ad23977977351aada59c40c08f3614a0b5dd058be3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6fec88c43a72df9ff0a813fb10564daaddefc0372cd7092e859a3f3ac8b896c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.5", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4e11128596cef681bd84bfe264ddc9f83ce4eb8a60eb195bda83e8f0c4261959" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17897ef3d792a4fb07364b14185519bfdc880534c4b1fd040aabe4df23fc3f96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9177556979825e5b635f67bf5d342faa425dd2b37b0b775fb3490e92e8000783" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b41aca5238ed0c6eecab98a713390a5da18635497547402f1027a482145acd69" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ec250bc7acdf12cf26392b5377a01b537fcdbd18749d075f7add3892f7b3ba9c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "10131c2fd8699d36b73148966adc2cd81bfc852f2b9835a9471fb27f463d2220" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.6", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4556e676b20f374560df2a169ea97f2eb97dca0428e69cdf6d5ca3ef256c5098" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfd7ed78cf07837a393979cd110672465f97b3fa03729496fc321fdae39178a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5592cf6d958ecc65dd6004c5a563927184da809a5fc490b9b339b08060493a38" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f74cf6704a326c0a1e93e8572e3870a87f147281bf4dd6f9fdc10efa423efd3" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1445e51499d0e7511d945c2dc26a6614f0f2b621a7ce8dbf2c0ea2faf31004fc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd7f8ebd88e1af74db3b68f4fe78e91a07edb5865ee05594866086feaa09626b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.7", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c74f67391dfd3177a7faea0bba535c96f2a241cbe1900ab988263e54b042cf" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "86054e5bc2b81a15122b4ea9372bb99b006676a75b1245d122d960e6b48d0810" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94426cc5667d12f24dfb5a4c26635f7f0bd16ca8a74a4b5b17c3ad0f6b5870d0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ffb21d7ae525174425c5d9bfc0f0ac06137d82740b2a0e89099e84c31da5ad" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "219cad26c2629c4b3411da7d9bfd8d9b17ba147c2fa6d3a44e56265bb6036abc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8651044a1c03e34baa3fdb9daf5c957d5ddbe86e50ca08ce32cd4b230ad4416c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + } + ] + } + ] + }, + { + "id": "microsoft.azd.concurx", + "namespace": "concurx", + "displayName": "Concurx", + "description": "Concurrent execution for azd deployment", + "versions": [ + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "048d8951105fb1620b4de27c66dd825d27eb43403bab6a3bff8f9824035a7adb" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858ebcaff372a78d85f3a192b67173d3843bec34d68cfc67e79e81417908f74e" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.finetune", + "namespace": "ai.finetuning", + "displayName": "Foundry Fine Tuning (Preview)", + "description": "Extension for Foundry Fine Tuning. (Preview)", + "versions": [ + { + "version": "0.0.8-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.9-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.10-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.11-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.12-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.14-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.16-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.17-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9337e7097479e80d563df018fc8099003d5500d7304c0d7eae238266870a9996" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79be23975c148b1cf7918316fd02da63ec87b925485c25189b434be7df36c4bc" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "330cfd1aa5af8c73d3fdaa86d36d4f0f2c7d072cab8136916a8360f0bcf8d197" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f40fe397120d965de80cbf3278fb7cce74b816f174e2fc77ea50de97f986d229" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12434209e2009ef68d8974eaf1a57926204c084057a0dd418d213cc3c32c73a0" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fa51bc324fda2672bf863b8d0adb427d734fe266d842b4ba8365c1fa0daf5143" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.models", + "namespace": "ai.models", + "displayName": "Foundry Custom Models (Preview)", + "description": "Extension for managing custom models in Azure AI Foundry. (Preview)", + "versions": [ + { + "version": "0.0.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8880a66bfa3a1f4e2bacecb0250c5e1f9123efbe1ee3dff9d0fbdd5b936b789b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6727395151f92024a04fcc6014670825c2acd1f71770206f85538d5d3f2dfc8c" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "584a0182197f8da11500f554b6ff2cd6b7c1fc06871832cdcf6465e7d8a3cf9c" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346bd40ed1a12273adece0533ba7ccd847e3849ce24130124b644e85b5835c42" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7f2425f5ebe080df17b28d01b77d14805ab72ef1250365086ce464c6d5749bce" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6356178c246cc7db2d9b26ffacb60614581bb2657f61c57d56406bf4999a15e8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bd712e6c072123ea2232033e79157f70b01449d9dc32c02eae021ead427b794" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f30e0ae33541d857d799b089f9e2a9d86f97ff729fb14d207deb4e468d327af" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0a64a188ade94a54cbcaa9b785c769076758fee596d44f13428f0955f9756a0" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6e39b71a30715c498a0747ca9fd63f37adfc9bfcb4177d974a160824c989ab" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "392c6b8c2d5d11c3a69d66218f1553010d7fd9334a7324791339cdd7c77a4f5f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f6b74e4eef1fd12d3af0064c9696c4c02f2970477d213ec51c72f7361e2cd24" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.3-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2f41da14b974822f8d75aab595ee99577923817b679be587b5b82de238173bb" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a155a25bd071319312ab21aec60ee4bd74e265131355f50aede525212a95876" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "daeab7a467679f96a2d1cee756ad80d4f311a331318919e7b6e7058924347db7" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8517e796c4bdaa0ea264dda2a47369fca2155a45e7cc38745e723e5a4bd5cbcf" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "597a43f4a1dcb0fc8ea4136736d872f0eb9da33a1abec8eb2c9928941c0c0a50" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2f3af40fd4d877b835252cea9004ecbea6df37ded619ac88179ac731e4301763" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.4-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4ff833b38bd4f1614b2d1b649c03c3db27f31558aeb006bebf4712b6ebfe37b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6901bc3563843ba475feb46897e9fcf7a75f84a2cda2e3ce468ad28d2a527bae" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "140975c5153696f820bc36649755922c7893d49c230bbbe2a23eb3372a4043ab" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1476d0b061027f708cf00113ca503cebbdf850c268b7376cfd2936d1bd233a28" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e95ec6caf91c64b7eb69a809e0d78fe46ea797b6994ca34f4ef78da10ababe4" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a778236b3412163d73574d298d345bd27819a3b3e3985503a7ec4097a135ef97" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.6-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d4cfd3380b1e6ad851bc5c45a522121c73ed3d72151bc6d68be0558780a82e" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "647a2801ade0fdeba43d9af301eb98b093bd146e98689356f745e10cf73e5c47" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b9f92d4c8e8275c099fd36909e2817595c403b0a001ec22803e56d9680d04bc4" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97f5c17f52a6a10d160d4b5a180186974d17e4a63650ecedc51a118396902708" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed52b1683bd7550712d70d9b14a5b08c2fff65fabc3548a7c155ebd9a1b0ae0f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "215b9e07a14aad9b72d56ad7c4b7b00dbf383d78b5bd1411fb98ddd0d6923cc8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78da390157ed64364a87e56fdceac5b61cb8b2f80c4d0ed832eaa657fa238f83" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a73ea7b51a86234b94c4a4c8526c9c14b4c5c48fea1d4ac3381b0d79a4e094a" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4aeb904395436a77d2decf0abd71484bdf93a5be93210bd47c17b8cf8ce2233" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19e6320e04e8e9e8ad59a339ae765aa2d9ce9b7740d0cfae0c36e95043c78350" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf529aa5eab93978d7ed9e489c75e767a3714a7107b9d12ad18adb10f8817ec2" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b9af9e7ab48030f82c7117bf3fd8367715042806ceeff7538aa6cbb5efa24db" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.appservice", + "namespace": "appservice", + "displayName": "Azure App Service", + "description": "Extension for managing Azure App Service resources.", + "versions": [ + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "556e61f1cccb7fe30018c0a8e4bea6a5c2dfeacae280cace3884df14ae5b9757" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "702c687a99fb5465a0ccce2ca5f0827e0da2d8e7a39ff86f1a0361296bb80a47" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2fb4efb9e2dfdbfa9ad1d54483213d38dec19361343eeb75615353a7d93a3448" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69204c40496bff0d6677ab8eb811d20173806a588b8f89572ab38157328c812a" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2306b741af14700cd65cb6efe16adac4050c7c84413c7dd74376c40e952dc1ee" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fc08097662690218d2ab4a42d2bb634b4ec05722fdfaf9f97b30b5b570f5a790" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5abda3ef17a4fbcd058e46f5ffc6ab602bf9570cd0a572a53d51754f7a29cdc9" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "db9a0dcd0805d30d0338a259335db0b98d3b8ebb7eb67bae214e8f3b83536340" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a10b103030b3124e4326f31894ed5872bfca4f95b83a39cd213e019a49d8d8" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0dcae29dccc5d8fee4c33656ee7959733b5c6b35e6d4514699452b4757423ac" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "aeb86c156e482a823d16f347a91b6263b61b74a57720cff79329a76ce044ea86" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f55c50e17075a1326aa077a37aecd0aa03413239ce277572ebc55d440ed4fa1" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.inspector", + "namespace": "ai.inspector", + "displayName": "Foundry Agent Inspector (Beta)", + "description": "Browser-based inspector UI for locally running Foundry agents. (Beta)", + "versions": [ + { + "version": "0.0.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c388f95d8822ecc5f51ddd554f06b846ea9ec7a70d4ab00dd6ac7f1876cddc25" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1c51712823a4bd31c735e39435f3c82fede78593843caa3267d23035f0f7020f" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8955ab5e9fa606f398f0fdc01b0e07974d889711c68d0e4a059f31ba67fd5693" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7aec619864df86971da1479be12c29acbe877f2551e7c4b2c6d74b0dc5cf0431" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "126fe267c3b4845a05344a873c17ad7e5689e18478d05716d26ecc165d257829" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b97e3579ef50cb2458a10add8a635e13f4679fcdfdd39834b3c3dc16e0bc31f" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3a3f6550bdfeea2e83c69a65ee899c04970b5810ea2ca605f7b3b530cb6a6841" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cca17cdbfc807259242ea390eb7f9606a907c84adbfc59c83e818cafa13b9e62" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f64c28f6e97de7ef1743d51f3b2f1dca4537d4fdcd97f5668ac979928eb82600" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9e8b2307f40821dde5e294ec010c2af141dcc67bf4e1ec67f2e72775ad78b6d" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "096320484ffc7ea089f0153ddc43c9d1b42ef8d6d603f6afe004689d5826ebed" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0733c82c6839df55a8f8738ec57675426bf48ff37c311c6321de3139ee5c8dc" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00349abfafd970c42048103876cd0d9beee9b65785171a276fc9739bb2db585f" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "44bd6c40686afbe7cd528ec33367fb59a880e890e978b82417ba3b78eb6f1a9d" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d03a8047b4ba40b77e20625ec9b5f5ab0f45541b43990a2c46a3f03e5923add1" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "449190739a5215da09496d1994441407a44816efc7631ab027091ad4126effaa" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b6fd1f8fcd08f4c1d06a2d5b735a30e84494211725e022d18a6a7d989a73629" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4572fdb982f7d68d8cb61bf3473c7e804a0b9a204d9470593e7dd10a6931b22c" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.foundry", + "displayName": "Microsoft Foundry (Beta)", + "description": "A meta-package, bundling together all of the Microsoft Foundry AZD extensions for easy install. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.25.2", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.connections", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + }, + { + "id": "azure.ai.projects", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.routines", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.skills", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.toolboxes", + "version": "~0.1.0-preview" + } + ] + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.1", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.7" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + } + ], + "tags": [ + "ai", + "foundry" + ] + }, + { + "id": "azure.ai.connections", + "namespace": "ai.connection", + "displayName": "Foundry Connections (Beta)", + "description": "Manage Microsoft Foundry Connections from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bbb15af6f33cfb27615f278dafd8b1a9f4892b4a5b350ebb4eba8ec91b9de1f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f73a211f7cfd0801e6b4e16f13d89ec48a141fd5f07c8bb9a7511565eda6479" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6aab4b4c60bc8fc6150e7beb2ca6e13e3fd977e57f2bd7afbb756136844bea" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d74941d383957ba8c37cc340e0a0fc10e8e6dfb2bbcd0d47916a5a54b75491fe" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5b929c90d8d47f9bdf9c0d6cdac0772fe6a94930ae5940ae5982687c30b03065" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b19ed9f9040f34914bbb3a8ed1e472a5ad4663381d4b4a40f81112e881cd334" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0976a78739040cd6c14f3d7564398ad31611ec6ad77a169853c19abb7a66bf37" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f92de7cf1472dc6a546b6bf59ce42b8c4e62fe553cd304810f88f6aeb751097b" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "58b92265a2d19783901bd5c1eae7f65c13e84c94e30a9f1cb14ff2c85f5b018d" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "458781ccd850985372913bd4398cd3ff67c0115292a23b6d0fc7d1300f8e8394" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "98dc88b5868da649330bdde7ce84d7d674ebd5a4044b75edfcd6556f1b280921" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0b787373481ae7e845246f19f5c08b96c90433f5b8a6db72e6ecc51501df9272" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "379c335983b4d193681572f70b7b62049693be632a1bfdcebd41a2656c865eeb" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "93e07a6bc78ac0a4b08850d6652f673ec136ff3c9b4e854fb9b991e201872129" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6741875f8ccfd33ad121555dd68b8ce51718adf455366c869498fd1356bc78e6" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f34c6778b701895f7cb35069ce285c4866a7a5225f9c002967cd236e266885e6" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57bfbe8f0b8bfe8adeea31b17ceb6bcd92acedd07b1b21ddaa3698d74b0c1e7f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4e43d55c7d18bc945ab3397051decf9e2706ce337c462343bd745b9b9a2835a" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ee2560f64aeb2ecc90c806fb31a90fd69cdc5b9f329d7bf9c9ac3971968033e" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78b7bb4e5b1714fbee095b7f3657fa8128a7aafbd280826983369ba404897c85" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cbe6ac426fa857acf07366c8bbf849d2d895322a5b6e0c6ccdae1669b1f2bd" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7118acc566a5f7ddfd5679ae39ae45ab805e3fcf608429be916a38f41da28ab5" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0925e403dd8be407f6115f0b2df5d8ac8d08375103179ad6afc315f7730dd1f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f3f855de615f5ab3ee4ec3524fef4af4ea45cfe82b3062765e0abbb3aec94f60" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13c7519528ad81f41661591167de2b52a8d7f088030b37f5e838e0dbc3eeef9c" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08d588ddaf81fe51c5e54fab1df89e130ae58a343f23c71f1afe8eb126cef0a5" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cf784aa617dea61402fd2dda2d1f4313311b4f56b007e522e3d656415178e79" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6954134a6ef80f989a10a83f36e479668a4a428defb8cf3dbf24228c09337387" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9474a3f7f0892658dd0b6256842787640f09da28923a14634be0fb0cdfcf8b8e" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "248ec2cc43722f6307baa5787497d3dcd6455feeba1a189fac0843be67ada06b" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a42a54a58f746d7f4b9a12393afa18a5a08a3355fffd0e91180b139d9730c83f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7ede8e6c8787d8a48f3a71193c3414ef3cd1f57315f2f9a4d3e72cd8210e9672" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e07ee36ccfb19660afad8c969db8e877a501e9dad93a8f3869ba0ab4a4cc4490" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3658e111caeaa77d7b9c42e8304c7f852e1abf5881db028d96e3911708abe4c8" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9056925a09677e354f13c0e02bb9bc0a8e43538da6926c005ba884fa2f931ab2" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0fd9f7f74975878c8db1d213d3e52bdd17843d76ce1dd89c9f6ae9b4597b99f8" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "connection" + ] + }, + { + "id": "azure.ai.projects", + "namespace": "ai.project", + "displayName": "Foundry Projects (Beta)", + "description": "Manage Microsoft Foundry Project resources from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "05ab0ec11fab528f5e1b0a8dca18106a36cce43fb43fac1042adda480b631a96" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c5933acfa44010d8b22c5d6aab67004b45966bf1c727faa2243bb79e42709f9" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd8adde884d890d014af00305d5809b4b8ac63e7cffa0491ab4a5b0d6ed7d961" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c1f0776f370b944d5e2bc6f598c0a8fe774a2d366435bf67425d422e7f82bba8" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab46a77b23df002ec6f966d97291e88118eb0949937aecacc1f910561ac46099" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "530938820b0db2340499c8251d28594a793146e5a0fdc3ba3e21e2eb28caf731" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09f1694f36ef38e09c8a8bfcfbd9de2426809d59ffd25018371820f2c9d7ad5f" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a70243e09373ef47022c18984be692e849e8fb9e237422fcc31e940df922ee4" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10d6ed22c03a5bcd307cf2e9fb5905f80132910879e8b3a0f3d15adf0897aa83" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f5e84b1570168f2c3d96ee293d6d743e4292c1ec6e7bfd4a6a57aa2c2413b58c" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a73602e109df724066d9ba0cc57c799978c5a2c5eed64de87b4024eccb9e0f22" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "22f55ccd9b3338d8cd20a75643d309136e3ab5cee583694638de8ce1ef5a5bb7" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b93e6df3fdb9fb7a0bf96739f6d3aeefc64da8e770700f2d436380415121394a" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0264ccedcc703f611db3512eebb462d7c2b23ca19a7cf3765a999d3dd484f70c" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0079e348224a9c028c7e4026e5cf47a89c0e94b0d1dcd0ed1ed4c4dd5fcea464" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d11b09fc5b5dbb196181f753a197cd8cfd042ea9d4e2899d795d4e4e77113e81" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "14bed81d4a038cfc8b6612c766efae2b7af4bf7356e3d9aa829230292ebb380e" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "45ba06b1efa449712063d3d2e31a74c9b8e0c568bde37675f6c7d7733365cdcf" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions Microsoft Foundry projects from azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1617009be6797d8c3506ffd979aecac2394cd5d216a218eee38355b55932ebdd" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7eb31e5a8f396760f30d702001d9a210c6ddd50722eb78876580116c513b37e1" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53e92ae77f346ae98b2c02f78755e741d97ffcab363046187fbc316cc751a2f7" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c3280f411d46efa017e542fac5899251e9a2b73499c9e5e1f26eeb958ce3bfa" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c6443394f044be8a15766f683d914696148d24a6dc88e1f057b390b6e7b4911" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0dc607626708a7fd6a1c46494746bfc8d84a66acf655f1eb162fcafa7f4f5b0" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "project" + ] + }, + { + "id": "azure.ai.routines", + "namespace": "ai.routine", + "displayName": "Foundry Routines (Beta)", + "description": "Manage Microsoft Foundry Routines from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "104a6c37b12dbf9df0aa12f8a6d6e65ac3aa6e4e7620008a3396c00a476564bf" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9807a195ad454869ef7241dc5ee604001d5cfa866b63fc2add089c8f8ac8aa27" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00357f3f43e9c560e52b4ca4f752d02d07ae7ca048eeb288f3f61e3517f5cac4" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be7d6e43a7fb5ebb04babaa10caf8a40318210a241bfe2ed7d480323b05bda4f" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "991bac0c60820687da64ad08d4da7a055afd159164baab237961b878ef779b3e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fcc69e80d50a77eb737638bbed06c315bb17e2b5e108925a7bd12adb08baf0a1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "48b7eb6ac648fa955f08a3f70d1fae96289a18a39e1535d282029df639a27188" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "385b0e0b3682e6903929f7f8bdf430b2c4a9ed15c61dfea332c0a50afb7c7b7d" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b208caa652e492698bba87743a9eabb6d27ecd17120518018dd04eea0c5dcb40" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2c33a81a1f74c2aa1c58166bcde50dc99df9a61c953be80df43d08341c4b51f1" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00e381eb9bdc1367b633884258c2aae874cf51698776094858963973394addfb" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be4af31db97a694a68feda347cd0bff1f2552d98a1f18298b9ea5e1089b86f32" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c056df668eb98dc1e9f132ff054a607a203974d956930c174758f344ac1703d1" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e3b5c28a57d415af6915651cb033e26ce7235d953782353c3df6ee40cc4df4b" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c30b58c07e60f46353c1f4023bbcc18cf6c89f2bcea1a01b7c54988420737c8d" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e7cef5f09d65ba992cef9c559e0749f5747b4c4b47a16ec10785f30fd813c775" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d745b1485be738b8bbe9e0efb028543f8f9e0dee46664ee3d650d5f8b4e7dd8e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "84c77a3b2cf8f3672ffa960716f543dc2f9ecb7a7f6222eb4aa19a293be51511" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a61b03858587e97c4eb72e108542a95066ccc5bf51b740b8f64392714bec81ea" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2df3af97042a57153d77f3e278ddc12c04dd08d03e7ae6bef6b3aebd99216409" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "80b362b3a5cc01514b38af373e21d3e3d2f90edc87364d976173a687e08bec0c" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab5af0c8bf5931b3869f7d7d57ccfb6cd8588cea9b45a4232abc9dd6b512b43" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bbe562e377c547cdc30d0ecd7eb792e2bb22aa968ef9ff78974c8c9fa7ff76c8" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c58a248ff67bce7168e79f301501403d57e84c68e9a91756825d1d5e719e4db1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "routine" + ] + }, + { + "id": "azure.ai.skills", + "namespace": "ai.skill", + "displayName": "Foundry skills (Beta)", + "description": "Manage Microsoft Foundry skills (reusable agent behavioral guidelines) from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f804b02a9bea8e4574bbba9115d9e7f987e2cf1d6ff326632fe4cf6ab805c32" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8bcce6fef9d02f0c41d66bb1210855adc8dcb60e42a1f72eabf554451145d1a6" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc2c5e8007abb97602f0dbe9b7abce31c829b58cfae94be2ae3920c64720ff62" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec9435f10028cdc3527c077f3c1fcd13ba1691e66f70c3345831b6e381e49fa2" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e3dc4b30aef457f98d5372ed898b3e670bac4649d823673f382fdf79db5562c" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c57b9d78626c838e4d47861208976994c125b76a1827c0795c9cce198544064" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "65b7aaf01e2383db13b363634fc32935e844316c3b293907eb2ba4fb1a0593b6" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fad46b1f02b3bdbbe270f4ef40bbaecba893854b1ae45bf7e886347cb5ee1376" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "19dc1283bb56f121529776bb496645a2e33f00c8ae55ddc883cbb56a0264cb36" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1f7185df316798d3355dfea090ee7ad5ed688ea176de256258eab458ed5c50cd" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "943c80bca4c61245b17312d0d3bea89b38f210c7b76abdfe7fd505c75028069f" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69881178bc433cdfe16c83dac9f0e7657b760c7f02488d3284d348a3854987b6" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78cb172e59f3593b5406d8f8a05d1d03603256e26d0476c704862d7de7891650" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6941da75dbce6f515b6375a5c02e5a188350b0ffd39a53d24360652ebce0fd24" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ba70b8e4c85b48bcf099a75ead9c2d6b26755325ca24b2d3458a1b0947aedda" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "11761481e5e8d1d1b9959278b844175a744e1b79ed343a264b9019ccf80f11d5" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e1b5e4994b8f3e81caea4ea9b775a1da2509c88b477935734113d1d0827ba99" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6939e50863d18a834e3c69a8818eebf68e9a9f5752442b7ec016ed1d86070ea" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d240ce6af7a65f53a85907109cea295923f0efdbf035756b3eea07c8e51043ff" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aebcfc163a2a83f51dd714bd47ab878a68d46d4ffe823b95b5f886823dbeb540" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c8e50c0cc43db92a18483cb58bb4d3eb8744d6b9972d806591f6eb5c149fdd7" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "319d265f95c2aa09e643e02fd8a762703221b7ce02a3232ff53ab68872a82e52" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2f8aa18dc971d003286169999c781722def7614e4f90c66500bec8b86a62c1b" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "230bbf7b136fcf46dc262d2c6290d602eac086cf4562d93e8bac12a83eeec7d2" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "skill" + ] + }, + { + "id": "azure.ai.toolboxes", + "namespace": "ai.toolbox", + "displayName": "Foundry Toolboxes (Beta)", + "description": "Manage Microsoft Foundry Toolboxes from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1609d3550e18806f381003e8c5869e517e750b5434571916dd2de44cd2e9fbdd" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a14efaa002a68498dead6e6b3834e30b7a0a1c7a7796ce9f8987d7199b57e3ba" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8734bbb5d01a6fa15e9dd4b3b827469b9a285343bc0ba0db208b15badebc4e08" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0376494263e1bcc1723cbfb79542c1c63870dd2ea447d5de551472293258e105" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6d67561df8233e1dd520d99ad908711f801a4dd0ce518a68936b0219ea817814" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65ae168b0405a86d7435af84b2dd6d55139cd985e9cc7509d38f2462d4315a" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a7bbd3ffc3bc76031730c843f67c83d3f9f859e663065e081cb3b0fa6d015d5f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce84c47b2cd2c03d684ab34ccb1a642109653c467c179164606bf37eec6cf26c" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d28f2e307115e8a6a4af149abd973e301a76bf6a79541b7777fdd106a407d032" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6845078710671ccd7f6cab96c32024bd48d1ae0072fb2ca0612aae8dcb4c3d5" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09071a9389dcc849b662e0f6685a32eb0c3275259fc7a27f6541df68c5d9cf5f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "772ad814cccb2388278542b7280dd670097b377fe0a677faad8564adff194441" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7659e18ac4563d4fb031aef321bff58fa7bc793a20f4c8f0eeb8bc03772544e5" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e2c8d8d55c7b4515a7ef1b9697a47a4d63ba950b7368603b0a234d2e51e0c26f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a302497a8e56656bff3497fd7a62e15caa6afda398df9f0b6b9883edae77e671" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c419817347c5c7edc937a286804d3cb0fbc84aa9888954b8306c095a6ca2558b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d25149bee577e927c9687cf0cf99b657a3a76324101273eda618905a55e4bbbe" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fea4d18597ee88f996a6061cf18b9f8e413b4debf163fe0ae8de5dbc2d2cdc63" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e4210a683dfd0bbd00ef0c4ce1fe433ec59390de7b69a8902ee2fcb080ae11d" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a805c24bebfb1a0f09606efff8f5770c23af9a0b78e8e5055075bb08f73b2b94" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "209d4a62ab8a9f44eabba5c6d1a13fa885a1c2644128ab442935602f4f041141" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "650928d065b486179828c4fc4c8dd67890ebf5010f9a4726a26c79bcf7edccde" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7103983de5ec47bb293ddad3ea67a6bd32081eb398406fa96f0a6d6de8e5f6" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e8224e29d55ab2d74b758aa81feed8e334f8f3f8774c3796d62ce1896856060d" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c72f2364fc36f1302ed985b78646ae13f466ea79b2cfc3ec494c15a4cbc28ca6" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89cdbaea7e44ee96c3f666a2c70f5b7f1918f9bb18899b9756bf35a584f42ec3" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bff025e857694e1017251577ee8aa73a35624dcfd0629d420cc7e7a067c7065" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "795ad144894142aa3625f462ee76e8a425ad80220a8c929efb6eaabc7f177887" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53cecc106285c5a535846a2e29732ae5cd439e876e7e57546a5b76cf9f0346a3" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "96d4db3874e02c538e42ea83259dae51fead85cfe6b844f793245b53aab492fe" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b48f837f11260112236b18691f432ebf5ac1f1dd9b6e63214031d3c01a8235c0" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bf16ae06048bb13484e35670395c2e1bac59332ddfdac2c25cab373d7426fa8" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6cd9e7ef35f0cc6e5496871ebbea64f51c34bf3ed33fd3822d6611b4c8685435" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bb2b9fb65b7f9d5725402553ac6ef6d8d8c646241612353575f3d17db496b27b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "beee2ccd845b64b6319173dd19284e3c2259c1c579887a3d8937a6988cc1827f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "918c6cfe51d3a430ab24220d2831da9415d38b4159935f0a4544b16bf54f7eaa" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "toolbox" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "415965" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Fri, 24 Jul 2026 17:58:02 GMT + Etag: + - W/"8ddee58bb0a47628bf39be132d7e2bbb031082a04030f2bcbaffad1781fef567" + Expires: + - Fri, 24 Jul 2026 18:03:02 GMT + Source-Age: + - "283" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 66bfdf25255fd51b5b4a3f7078c02112b268415f + X-Frame-Options: + - deny + X-Github-Request-Id: + - FF5E:3131F3:A1690:CD5B2:6A63A308 + X-Served-By: + - cache-bfi-krnt7300023-BFI + X-Timer: + - S1784915883.731147,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 56.8404ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations?api-version=2022-12-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 48722 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus-az2"},{"logicalZone":"2","physicalZone":"eastus-az1"},{"logicalZone":"3","physicalZone":"eastus-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus2-az2"},{"logicalZone":"2","physicalZone":"westus2-az1"},{"logicalZone":"3","physicalZone":"westus2-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Australia","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiasoutheast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"australiaeast-az2"},{"logicalZone":"2","physicalZone":"australiaeast-az1"},{"logicalZone":"3","physicalZone":"australiaeast-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Asia Pacific","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southeastasia-az2"},{"logicalZone":"2","physicalZone":"southeastasia-az1"},{"logicalZone":"3","physicalZone":"southeastasia-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Europe","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"northeurope-az2"},{"logicalZone":"2","physicalZone":"northeurope-az1"},{"logicalZone":"3","physicalZone":"northeurope-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Sweden","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/swedensouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"swedencentral-az2"},{"logicalZone":"2","physicalZone":"swedencentral-az1"},{"logicalZone":"3","physicalZone":"swedencentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Europe","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/northeurope"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westeurope-az2"},{"logicalZone":"2","physicalZone":"westeurope-az1"},{"logicalZone":"3","physicalZone":"westeurope-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(UK) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United Kingdom","geographyGroup":"UK","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/ukwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uksouth-az2"},{"logicalZone":"2","physicalZone":"uksouth-az1"},{"logicalZone":"3","physicalZone":"uksouth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"United States","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus2"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralus-az2"},{"logicalZone":"2","physicalZone":"centralus-az1"},{"logicalZone":"3","physicalZone":"centralus-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"South Africa","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southafricawest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southafricanorth-az2"},{"logicalZone":"2","physicalZone":"southafricanorth-az1"},{"logicalZone":"3","physicalZone":"southafricanorth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"India","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southindia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centralindia-az2"},{"logicalZone":"2","physicalZone":"centralindia-az1"},{"logicalZone":"3","physicalZone":"centralindia-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Asia Pacific","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southeastasia"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastasia-az2"},{"logicalZone":"2","physicalZone":"eastasia-az1"},{"logicalZone":"3","physicalZone":"eastasia-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/indiasouthcentral","name":"indiasouthcentral","type":"Region","displayName":"India South Central","regionalDisplayName":"(Asia Pacific) India South Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"India","geographyGroup":"Asia Pacific","longitude":"78.47599792","latitude":"17.36599922","physicalLocation":"Hyderabad","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"indiasouthcentral-az2"},{"logicalZone":"2","physicalZone":"indiasouthcentral-az1"},{"logicalZone":"3","physicalZone":"indiasouthcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/indonesiacentral","name":"indonesiacentral","type":"Region","displayName":"Indonesia Central","regionalDisplayName":"(Asia Pacific) Indonesia Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Indonesia","geographyGroup":"Asia Pacific","longitude":"106.816666","latitude":"-6.2","physicalLocation":"Jakarta","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"indonesiacentral-az2"},{"logicalZone":"2","physicalZone":"indonesiacentral-az1"},{"logicalZone":"3","physicalZone":"indonesiacentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Japan","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/japanwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japaneast-az2"},{"logicalZone":"2","physicalZone":"japaneast-az1"},{"logicalZone":"3","physicalZone":"japaneast-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Japan","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/japaneast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"japanwest-az2"},{"logicalZone":"2","physicalZone":"japanwest-az1"},{"logicalZone":"3","physicalZone":"japanwest-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Korea","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/koreasouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"koreacentral-az2"},{"logicalZone":"2","physicalZone":"koreacentral-az1"},{"logicalZone":"3","physicalZone":"koreacentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/malaysiawest","name":"malaysiawest","type":"Region","displayName":"Malaysia West","regionalDisplayName":"(Asia Pacific) Malaysia West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Malaysia","geographyGroup":"Asia Pacific","longitude":"101.693207","latitude":"3.140853","physicalLocation":"Kuala Lumpur","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"malaysiawest-az2"},{"logicalZone":"2","physicalZone":"malaysiawest-az1"},{"logicalZone":"3","physicalZone":"malaysiawest-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"New Zealand","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"newzealandnorth-az2"},{"logicalZone":"2","physicalZone":"newzealandnorth-az1"},{"logicalZone":"3","physicalZone":"newzealandnorth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Canada","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/canadaeast"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"canadacentral-az2"},{"logicalZone":"2","physicalZone":"canadacentral-az1"},{"logicalZone":"3","physicalZone":"canadacentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/austriaeast","name":"austriaeast","type":"Region","displayName":"Austria East","regionalDisplayName":"(Europe) Austria East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Austria","geographyGroup":"Europe","longitude":"16.3727779","latitude":"48.2092056","physicalLocation":"Vienna","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"austriaeast-az2"},{"logicalZone":"2","physicalZone":"austriaeast-az1"},{"logicalZone":"3","physicalZone":"austriaeast-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/belgiumcentral","name":"belgiumcentral","type":"Region","displayName":"Belgium Central","regionalDisplayName":"(Europe) Belgium Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Belgium","geographyGroup":"Europe","longitude":"4.355707169","latitude":"50.84553528","physicalLocation":"Brussels","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"belgiumcentral-az2"},{"logicalZone":"2","physicalZone":"belgiumcentral-az1"},{"logicalZone":"3","physicalZone":"belgiumcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/denmarkeast","name":"denmarkeast","type":"Region","displayName":"Denmark East","regionalDisplayName":"(Europe) Denmark East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Denmark","geographyGroup":"Europe","longitude":"12.56553","latitude":"55.67594","physicalLocation":"Copenhagen","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"denmarkeast-az2"},{"logicalZone":"2","physicalZone":"denmarkeast-az1"},{"logicalZone":"3","physicalZone":"denmarkeast-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"France","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/francesouth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"francecentral-az2"},{"logicalZone":"2","physicalZone":"francecentral-az1"},{"logicalZone":"3","physicalZone":"francecentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Germany","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/germanynorth"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"germanywestcentral-az2"},{"logicalZone":"2","physicalZone":"germanywestcentral-az1"},{"logicalZone":"3","physicalZone":"germanywestcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Italy","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"italynorth-az2"},{"logicalZone":"2","physicalZone":"italynorth-az1"},{"logicalZone":"3","physicalZone":"italynorth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Norway","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/norwaywest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"norwayeast-az2"},{"logicalZone":"2","physicalZone":"norwayeast-az1"},{"logicalZone":"3","physicalZone":"norwayeast-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Poland","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"polandcentral-az2"},{"logicalZone":"2","physicalZone":"polandcentral-az1"},{"logicalZone":"3","physicalZone":"polandcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Spain","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"spaincentral-az2"},{"logicalZone":"2","physicalZone":"spaincentral-az1"},{"logicalZone":"3","physicalZone":"spaincentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Switzerland","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/switzerlandwest"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"switzerlandnorth-az2"},{"logicalZone":"2","physicalZone":"switzerlandnorth-az1"},{"logicalZone":"3","physicalZone":"switzerlandnorth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Mexico","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"mexicocentral-az2"},{"logicalZone":"2","physicalZone":"mexicocentral-az1"},{"logicalZone":"3","physicalZone":"mexicocentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"UAE","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uaecentral"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"uaenorth-az2"},{"logicalZone":"2","physicalZone":"uaenorth-az1"},{"logicalZone":"3","physicalZone":"uaenorth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Brazil","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"brazilsouth-az2"},{"logicalZone":"2","physicalZone":"brazilsouth-az1"},{"logicalZone":"3","physicalZone":"brazilsouth-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/chilecentral","name":"chilecentral","type":"Region","displayName":"Chile Central","regionalDisplayName":"(South America) Chile Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Chile","geographyGroup":"South America","longitude":"-70.673676","latitude":"-33.447487","physicalLocation":"Santiago","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"chilecentral-az2"},{"logicalZone":"2","physicalZone":"chilecentral-az1"},{"logicalZone":"3","physicalZone":"chilecentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Canary (US)","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centraluseuap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2euap-az2"},{"logicalZone":"2","physicalZone":"eastus2euap-az1"},{"logicalZone":"3","physicalZone":"eastus2euap-az3"},{"logicalZone":"4","physicalZone":"eastus2euap-az4"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Israel","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"israelcentral-az2"},{"logicalZone":"2","physicalZone":"israelcentral-az1"},{"logicalZone":"3","physicalZone":"israelcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geography":"Qatar","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"qatarcentral-az2"},{"logicalZone":"2","physicalZone":"qatarcentral-az1"},{"logicalZone":"3","physicalZone":"qatarcentral-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"usa","geographyGroup":"US"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/indonesia","name":"indonesia","type":"Region","displayName":"Indonesia","regionalDisplayName":"Indonesia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/malaysia","name":"malaysia","type":"Region","displayName":"Malaysia","regionalDisplayName":"Malaysia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/mexico","name":"mexico","type":"Region","displayName":"Mexico","regionalDisplayName":"Mexico","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/spain","name":"spain","type":"Region","displayName":"Spain","regionalDisplayName":"Spain","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/taiwan","name":"taiwan","type":"Region","displayName":"Taiwan","regionalDisplayName":"Taiwan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"asia","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geography":"asia","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"eastus2-az2"},{"logicalZone":"2","physicalZone":"eastus2-az1"},{"logicalZone":"3","physicalZone":"eastus2-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Stage (US)","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralusstg"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/northcentralus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"southcentralus-az2"},{"logicalZone":"2","physicalZone":"southcentralus-az1"},{"logicalZone":"3","physicalZone":"southcentralus-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"westus3-az2"},{"logicalZone":"2","physicalZone":"westus3-az1"},{"logicalZone":"3","physicalZone":"westus3-az3"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralus"}]},"availabilityZoneMappings":[]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus"}]},"availabilityZoneMappings":[]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"India","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/jioindiacentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Canary (US)","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastus2euap"}]},"availabilityZoneMappings":[{"logicalZone":"1","physicalZone":"centraluseuap-az1"},{"logicalZone":"2","physicalZone":"centraluseuap-az2"}]},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Stage (US)","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/eastusstg"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United States","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westus2"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"South Africa","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southafricanorth"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Australia","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiacentral2"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Australia","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiacentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Australia","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/australiaeast"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"India","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/jioindiawest"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Korea","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/koreacentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"India","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/centralindia"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"India","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/southindia"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Canada","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/canadacentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"France","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/francecentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Germany","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/germanywestcentral"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Norway","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/norwayeast"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Switzerland","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/switzerlandnorth"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"UAE","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uaenorth"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"Brazil","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/brazilsouth"}]}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(UK) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geography":"United Kingdom","geographyGroup":"UK","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations/uksouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "48722" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:58:15 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - cb0f8e3d-1aa0-4b56-95f1-c20b2d5d8644 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175816Z:cb0f8e3d-1aa0-4b56-95f1-c20b2d5d8644 + X-Msedge-Ref: + - 'Ref A: B4F3498F92FE45C1B885635B4658A98E Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:58:14Z' + status: 200 OK + code: 200 + duration: 1.9939111s + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 381902 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "381902" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:58:17 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 6eb87c82-1bd1-41e2-b38e-0e9607e6f561 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175817Z:6eb87c82-1bd1-41e2-b38e-0e9607e6f561 + X-Msedge-Ref: + - 'Ref A: F1B480E558EC40628EDA88EE53A3407E Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:58:16Z' + status: 200 OK + code: 200 + duration: 1.4407312s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 8368 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wf91d1a","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.45.15.27210","templateHash":"3209218408488532331"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the azd environment."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources."}},"principalId":{"type":"string","metadata":{"description":"Object ID of the user or service principal running azd."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2024-03-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"},"tags":{"value":"[variables(''tags'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.45.15.27210","templateHash":"10196445652070822657"}},"parameters":{"environmentName":{"type":"string","metadata":{"description":"Name of the azd environment."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Location for all resources."}},"principalId":{"type":"string","metadata":{"description":"Object ID of the user or service principal running azd."}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags applied to all resources."}}},"variables":{"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","acrPullRoleId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]","acrPushRoleId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8311e382-0749-4cb8-b61a-304f252e45ec'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2023-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"StorageV2","properties":{"allowBlobPublicAccess":false,"minimumTlsVersion":"TLS1_2"}},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[format(''acr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","sku":{"name":"Basic"},"properties":{"adminUserEnabled":false}},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","kind":"linux","sku":{"name":"EP1","tier":"ElasticPremium"},"properties":{"reserved":true}},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(parameters(''tags''), createObject(''azd-service-name'', ''func''))]","kind":"functionapp,linux,container","identity":{"type":"SystemAssigned"},"properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"[format(''DOCKER|{0}/placeholder:latest'', reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), ''2023-07-01'').loginServer)]","acrUseManagedIdentityCreds":true,"ftpsState":"Disabled","minTlsVersion":"1.2","appSettings":[{"name":"FUNCTIONS_EXTENSION_VERSION","value":"~4"},{"name":"FUNCTIONS_WORKER_RUNTIME","value":"node"},{"name":"AzureWebJobsStorage","value":"[format(''DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1};EndpointSuffix={2}'', format(''st{0}'', variables(''resourceToken'')), listKeys(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2023-05-01'').keys[0].value, environment().suffixes.storage)]"},{"name":"WEBSITES_ENABLE_APP_SERVICE_STORAGE","value":"false"}]}},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), variables(''acrPullRoleId''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[variables(''acrPullRoleId'')]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), parameters(''principalId''), variables(''acrPushRoleId''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''acrPushRoleId'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[format(''acr{0}'', variables(''resourceToken''))]"},"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "8368" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2790 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T17:58:18.407013Z","duration":"PT0S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2790" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:58:19 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "2999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "199" + X-Ms-Request-Id: + - 32623b16-d511-450b-b03b-5722a72ef6df + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175820Z:32623b16-d511-450b-b03b-5722a72ef6df + X-Msedge-Ref: + - 'Ref A: 0F78C054520B463396739A4D01CAE0F3 Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:58:17Z' + status: 200 OK + code: 200 + duration: 2.1639383s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 8368 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wf91d1a","reference":null},"location":{"value":"eastus2","reference":null},"principalId":{"value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8","reference":null}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.45.15.27210","templateHash":"3209218408488532331"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the azd environment."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources."}},"principalId":{"type":"string","metadata":{"description":"Object ID of the user or service principal running azd."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2024-03-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2025-04-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[parameters(''principalId'')]"},"tags":{"value":"[variables(''tags'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.45.15.27210","templateHash":"10196445652070822657"}},"parameters":{"environmentName":{"type":"string","metadata":{"description":"Name of the azd environment."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Location for all resources."}},"principalId":{"type":"string","metadata":{"description":"Object ID of the user or service principal running azd."}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags applied to all resources."}}},"variables":{"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]","acrPullRoleId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]","acrPushRoleId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''8311e382-0749-4cb8-b61a-304f252e45ec'')]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2023-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","sku":{"name":"Standard_LRS"},"kind":"StorageV2","properties":{"allowBlobPublicAccess":false,"minimumTlsVersion":"TLS1_2"}},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[format(''acr{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","sku":{"name":"Basic"},"properties":{"adminUserEnabled":false}},{"type":"Microsoft.Web/serverfarms","apiVersion":"2023-12-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]","kind":"linux","sku":{"name":"EP1","tier":"ElasticPremium"},"properties":{"reserved":true}},{"type":"Microsoft.Web/sites","apiVersion":"2023-12-01","name":"[format(''func-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(parameters(''tags''), createObject(''azd-service-name'', ''func''))]","kind":"functionapp,linux,container","identity":{"type":"SystemAssigned"},"properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"[format(''DOCKER|{0}/placeholder:latest'', reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), ''2023-07-01'').loginServer)]","acrUseManagedIdentityCreds":true,"ftpsState":"Disabled","minTlsVersion":"1.2","appSettings":[{"name":"FUNCTIONS_EXTENSION_VERSION","value":"~4"},{"name":"FUNCTIONS_WORKER_RUNTIME","value":"node"},{"name":"AzureWebJobsStorage","value":"[format(''DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1};EndpointSuffix={2}'', format(''st{0}'', variables(''resourceToken'')), listKeys(resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken''))), ''2023-05-01'').keys[0].value, environment().suffixes.storage)]"},{"name":"WEBSITES_ENABLE_APP_SERVICE_STORAGE","value":"false"}]}},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), variables(''acrPullRoleId''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'', ''full'').identity.principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[variables(''acrPullRoleId'')]"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), parameters(''principalId''), variables(''acrPushRoleId''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[variables(''acrPushRoleId'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', format(''acr{0}'', variables(''resourceToken''))), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[format(''acr{0}'', variables(''resourceToken''))]"},"AZURE_FUNCTION_URI":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.Web/sites'', format(''func-{0}'', variables(''resourceToken''))), ''2023-12-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_FUNCTION_URI":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2025-04-01'').outputs.AZURE_FUNCTION_URI.value]"}}}},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "8368" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1427 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-07-24T17:58:20.8201243Z","duration":"PT0.0007433S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868/operationStatuses/08584166909846459307?api-version=2021-04-01&t=639205127043982254&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=aIdDl5AD9GdAuRJqzs7_3GzmTfDVucU2aaoWzEO19DkTGTpfnTtOXqBjD3k6vDQAzZ__BMVkzs962tbqw7qdW3pbJC0pvtCxAMDQ0zCBZDDXaUE7g84nJoO0ytoYq7OCUin-NS27CL6iMaQ-4C31U7iDsydRWT90qbfFYywMA0OBAUgpowBXD4QNYa-HNyjYYlUhoBCXHPINvmUzM4G8w9iom4j-Lv5eQUizJdxDwnvPrevmInX7wGYweLq3x5PS7EFTvqTLFJHCoCVLT3EN6Wu45NNvuC-jAeOJimfp7gD9qBuhbkoeBGFb8gUrqbLl_62bBol7aESSqmnSLITeZw&h=oYrcGnTPGsCoICL7QSHwbFD6-NyAM7GyP4uoOgzTMZI + Cache-Control: + - no-cache + Content-Length: + - "1427" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:58:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Deployment-Engine-Version: + - 1.701.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "2999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "199" + X-Ms-Request-Id: + - 20868aa2-3865-4f6b-8985-1b8b6dd40d8c + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175824Z:20868aa2-3865-4f6b-8985-1b8b6dd40d8c + X-Msedge-Ref: + - 'Ref A: 601005A51AC844C292C8D628CC47E232 Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:58:20Z' + status: 201 Created + code: 201 + duration: 4.2721094s + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868/operationStatuses/08584166909846459307?api-version=2021-04-01&t=639205127043982254&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=aIdDl5AD9GdAuRJqzs7_3GzmTfDVucU2aaoWzEO19DkTGTpfnTtOXqBjD3k6vDQAzZ__BMVkzs962tbqw7qdW3pbJC0pvtCxAMDQ0zCBZDDXaUE7g84nJoO0ytoYq7OCUin-NS27CL6iMaQ-4C31U7iDsydRWT90qbfFYywMA0OBAUgpowBXD4QNYa-HNyjYYlUhoBCXHPINvmUzM4G8w9iom4j-Lv5eQUizJdxDwnvPrevmInX7wGYweLq3x5PS7EFTvqTLFJHCoCVLT3EN6Wu45NNvuC-jAeOJimfp7gD9qBuhbkoeBGFb8gUrqbLl_62bBol7aESSqmnSLITeZw&h=oYrcGnTPGsCoICL7QSHwbFD6-NyAM7GyP4uoOgzTMZI + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:38 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - dcb76c9b-a75e-4240-8368-b4c98f29a146 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175938Z:dcb76c9b-a75e-4240-8368-b4c98f29a146 + X-Msedge-Ref: + - 'Ref A: 105D6B55E4CF4ED6BA954A2031DDFDD1 Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:59:38Z' + status: 200 OK + code: 200 + duration: 223.7032ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2927 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T17:59:37.3261935Z","duration":"PT1M16.5060692S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr3byfkdyh5dhvo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr3byfkdyh5dhvo"},"azurE_FUNCTION_URI":{"type":"String","value":"https://func-3byfkdyh5dhvo.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2927" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:38 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - b98d6b13-5b40-4f42-aa18-295377383aa9 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175939Z:b98d6b13-5b40-4f42-aa18-295377383aa9 + X-Msedge-Ref: + - 'Ref A: B44EBF6417F3462D93733EC3F306F929 Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:59:38Z' + status: 200 OK + code: 200 + duration: 408.822ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf91d1a%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","name":"rg-azdtest-wf91d1a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:39 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - a3eaf27c-ac63-46a1-94a7-4b3fc4eeeb95 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175939Z:a3eaf27c-ac63-46a1-94a7-4b3fc4eeeb95 + X-Msedge-Ref: + - 'Ref A: 8097F077990746D1AD311A5004BEE8ED Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:59:39Z' + status: 200 OK + code: 200 + duration: 450.95ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://aka.ms:443/azd/extensions/registry + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 17:59:40 GMT + Expires: + - Fri, 24 Jul 2026 17:59:40 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 151.9694ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: raw.githubusercontent.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415965 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.3.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c130f6534223fa998bffc6716b3db4dde86b420053e4e41e780d4b7961e891b9" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcc6d26d044362ab23bb82c59452d9967bdf5d2dec1b67cf56a7e035e93f248f" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "673a66c3ab482e27b055534be13f3ff61970eac9cc1a559663ee5e77efc22c35" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2e41ce4464989e0c3ad401c7ce84ae0cb5e5287abe2e60d901a790fde0fb7ea3" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ddc09442c399e6597931b364a0e38f3712b5fe932b3270fc4f722b10d45df36" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7026c30919eeb5bdb6e80d6a2afb2a8614259137b9646607f58e5a231d3276f4" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e68599435a5854f7e8a96f5f93d5a602531e5416617b595f6db71c6f27ef161" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b8496560b936d3ce7ecc890cdc892ec2dabd3e17a41d3e8b81e3dc8f1e6ac79" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e87e451548036d5eea41c740d2125a174c46f3518626ca7d570c09c9aefbd8be" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f9dfd652a0d67fa525ec1772ab346c1b0f253bba8e4f3b66869f0ff5173a9622" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f408d344ce24cb010feed3c6a97dd923296a67f0af28ae01a9539aaa4a0bfa82" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6439232a8b3218ecc64abbd34ee2c76e3eab3ab8aa60f7d79aec72ad08c0c38" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "79ee739ef1e7ef1c57ca894e0970ba0c27f088d8b804d0c2fc0d47b1b014c910" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a9cc1d960260fe6f01bdcccdeed4f7f2509a84b3ae7a274a33562fbd0880f145" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2a501bd3123f5599c64853b65709161e77874b8a1c87dcced08e217474bb2383" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fc0a310676dc575de2ed0c145decf39bc60b26b49118459f530207305637ade" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "64f1c5461bc638bd0fd1092ee042dd99ca14d9fe083ac55ae642313b6e980e80" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97a3a1c2cc34877194f7d6888ca07904b5a4323542158540f21aa6c099ad990e" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.extensions", + "namespace": "x", + "displayName": "azd extensions Developer Kit", + "description": "This extension provides a set of tools for azd extension developers to test and debug their extensions.", + "versions": [ + { + "version": "0.4.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "82c417090c5db778ecc8c99a90dd55af3a2cc4418c5aa6f30aa63c2bc8f1d747" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3972b447027a4335126407e5a7dde02273ed90f8851bdd11acb0df7ea99a10ae" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2fae81971e8767f1ff70748c791e5ca1e0caa5020ec9c48d573d3bf190004bdc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf413931238d79b26bed1242e59fb80c9e922c9385696598496f63389fc9ef" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1d8efcce9b68d8a7bc09227fffa0313254d4dbf8c3f64e8085ba2a0283010279" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a2dc779583d722b338d6fa146e9d3dc6d491f9134762dc0f844d81ab06f0548f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8f9fcaa723052db4c2759e5786cd6aaef59657eee16085cb10d68d4eab34e98" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d47f6333f59e489c9f32c24f3abdb945235b8629abc6d2157e30f1b91814d9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d2f6823fdb3f2343cd5de9e0cd740af9b59faf48cfa07f9b4f8a96a0d7d51f9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10a88883a3144e2d577755972cf9c958bb7bf99946c2ef09c9fbd7f6bc522418" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "011e4433cb1e1ff15cd8b7b20e3b3db90ac86476ee1a6ee86b44a118b553a34c" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81e21c0591073af8759073cdc0aa5356350b29dfa565d4296d81770eb9250155" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29d7667e5c5fe398b2bc2d49d8cd50c4ec2d7a80af39b5dc2661e0a279096b07" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "89ba0413718ab42271d70e723ae5c568dd4641e35de91623cb43590ce44b1c08" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "633bed7f65b7c7fdf38f264f9ee17f2b5421ad086a19deffff6e91f6409b0da1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fac18d7791a94f292f959bdb5e9d871577462d25fd2a0c6934308b812e1d69df" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b969de90f1639b05bb5b9bd379f50fac2f731ad48fc773a6a8d2e478efc49495" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa1e9644a99e575eeb7925f6db38c942d5116ead358daf52afaab20529dd7b33" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd943d1b6df6b1a7b985c1496fa9966907838300799697590f4c375773e655e8" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.12.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33e5f28ccccbbe199e9b02cac8da43853b50fd15d7d7c5cbc4b4888028b84ae7" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2397247ff6680bc9dce38f6d11a40096059cbce27f03fc0e27dad95fa05d0ebc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb8ca717eb58064064ab3ae6dac01c62a330f231054a953fb558fe787f172852" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "59d5b1a75205300e188e7b14d45dfbc0fda24e0dbe3110a57dea58fa937f9857" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "523b5677e6ed818a749e0a10e4d80d18586e83b299ebedc24b7bf835227ce2ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3d1ddcbf7afbb39827a75359e5cb02ef309b80d26fc83dc82c2032eaebf2e608" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.coding-agent", + "namespace": "coding-agent", + "displayName": "Coding agent configuration extension", + "description": "This extension configures GitHub Copilot Coding Agent access to Azure", + "versions": [ + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e086cdd196108c7b7e6cb2a9e5852009caf3d0128b1fc0bd537764405fb81cb6" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfbc5e06b0f1ae0e8e4a086a1e42e5d7e973a6e818b9b20efb925ac780f82db" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b546f5fb825cb4ad758c535efb2c6414d5b163335974d0f2dd5c959eaee7fbf" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b81c9014dccc2a4d79f31d4d76992e952b5caf96bddd1881b388abb93d8ab88" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bca57dc67b11aaea160696003ef0fa5734ccb57cbbef20cfe6c469360edfdf0" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d2854d9c9bdba79b10a728d96a77d7c9f64f457927c0564292b9b3a40e9a3e6a" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.agents", + "namespace": "ai.agent", + "displayName": "Foundry agents (Beta)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Beta)", + "versions": [ + { + "version": "0.0.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "592dbeca411725b0ee7708a54469dfa05c88451793514731ce083d5a1c20bec5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12293a86ee951d99bc0903e0436573f5da853eeb0f21d894f0fb5c5de670cfdb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81449a1df145676cb20a002a3496177c823873deae31d4ca51edd9ff691d08b6" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "790de2fa0cd241e2daeb487483cbe5c9b1d2f5bb4a904daa753b5a03ac20b632" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d7943130b400a89eac4f1622d34fd1fff10821a14507ea8a0f3a37aaf15697e2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20352ae5d05604ad4ebac5c42b9d4f049afc5f921759a4534967ba672c78448e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06e7865cfed0f7e4b4dad9bde06f4763210b9afb67012676455b50b0c9629432" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.3-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.4-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.5-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.6-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.8-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.9-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.10-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c64121ba9dc31fbfb34d32d9244a21aa409dabf9e06ace243fd53a3baef7afea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90f2a83c05f6821dad45f5245e34c80bc0b07b7a2d3a6d203d68bd768bd12edf" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d386525c926eca66543f3b01446b41b0eaa291ba88c390140f6dcc0d1dbf3954" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "20c97b2b8a8cbc7b3815ebd6b7e6e1cc6b5aaa280187a486c55d651360e3f505" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "abe6ef169a9c302b4e3095840f5bf7f26070c10c81fdeaaa498e2cd82d69766d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41adb6c666d0f88fcd49a45999658c3e6e6e2cd39fe256955362ca86dce5cd78" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.11-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f36b1754b2b810b9bcbf3f7a1b960bd91f97b66156ff686b0d4c2a7ba3ffbfb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cae9de7cbde3ada737f893f357d8b4c0199fc7ac4c6132b426326cfff74eda31" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e5da23e45728034744d1b8b7f06b84e56cb9df0ddc865df9d6b6d249b3e8d0d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e19b59b6f76cb970de5c3bcd42c158d739d691e87cbd46a5e4f545501173abd" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a572a9e3d430898482f80054938aa6709ebb65a8a6df88e727aacaf45e92a872" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "046e9679b9dfa58f5d1c5d4344c7dcb1ecbc72ec2f3df74282709628e501429f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.12-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "86302e1fc56240bc2b78c2747ac53c04af24dc08282c9f287ab64a217b720cb5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "55bfb37e0f0f5400c51f3767ab90a45198f80acc8610f2d2118d7ed5618136f5" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46b60240d9c1972749efb05af3e9a44f3749a921aa79a431e957ba0b666f6402" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ee8f28c2d169854c7faa3c5c95592839c92e674a2edac4e800e0181477e6058" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f26f81c762d32cffda75e9665645ed11ee528eab029e2f6a1334f42f2ca464d8" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f1bf020b2aca5d0d94726705a682c67b8a46e007da6c7b09ca45635f1809929d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.13-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e78bbec69c38c86f9690f98f90d461c6e816c5d2059ab9cf1dd611868c3e44ec" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c4c69e379b3272ede0d892f75efcf08f128ab93e42aac6278e7c9d548f5e841" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b20ac48c1d59991f2fd2eb47c789d95ab441c70ba5abb60a567efdf5c30bb8ea" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3159eb218dcc6b11fa71f00f8debe558bcd481bef7f0c2b0945b1a19eaf38790" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b5453d9af26831aeec9d58eccc96219361fc49794e7eabdf8979b9fb806a675" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3494f5f1205ec5d78f3f725b93182e217f7e9b7e93f53de63bf356c72656fd69" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.14-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c77b6f268659c93f91865a977970a941e36b00f2af2004a60556fd6692d8a28" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dda0c803d1f116325c560e2673d3e803999a84145bc873e2d68a4dfb0b5fca5e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9006a086c3b5d4d1a7819ca50c749075e3cb2bf0520e43c5027ceb1ff072c9f8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d426f8658705012f6672d2c718f392babf0a9e448bdf6adea1736c944406070" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8c7f6d83d55ca7f16f7de2ee41421a90cdc35aea617112fe4d0f169c57d2b90d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4e47b751bccea4518b803a4980bc53453925bc88c75f9c7fd5417116bb468b98" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.15-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf244978094a6a59b33f090af06dd62f71b19fd9b6014a9c02639856cfca87" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe7c8d0d67b94461cedbe12e4ace77ad96bde948ebd1d530aa20f41e219f8d7d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c217ab5583e34e7ff884248b62d3af94a77dc0b3453538b48e559428c5119a5b" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fd4d7e1f0aba957065de343da7cf06cfbed993abfe5da7a0615e913197d8876" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bad25e242dd148c12b5616ecc755f858f65161d78bd0ada2afd7c880cae47de3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9cc2d182f722b19ad22a6f28257b9d06e42c188cd6badd38264be3c410747f53" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.16-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f724bed29577250f7ff443913682247b1833cd05c843f19f942c48e092af588e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c88c0e76bfdfca7266d24d1372f28a047794f068e01d4279ecc993126d28ceb2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5943072ca1a8baee772ce9390ff99abf363258950454149e9e0c117453a5ce2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be8a8652381f658587e99f99b85d1272be02ea563ccdcb43ae77a69de6161166" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b6b033133414b32e74c9a6c01506cb343c02b56f136f68450349e8139b26cc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42f1065dfa623259614078add0cb6a5c1fd7689ffd16e2b54be68ac20f5792b9" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.17-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cafe851463b9329f4284ea41ff161b8deb6e7bc79e2519cda9c83a4413deff0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cd4756b84f0ee721089ea3d3e1e0b47b23d8cf152c1861bd13be29e24c98027f" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4c7ea2edbd8c273ef387d9866c997be079f306ac19534eb8739a0e93b2f3f614" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b1e95a55d31b08d7153b14226d21ad98b138ebf438b9cb4b617ac6e5092389c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbcaaa3b037f5c9d2c9a92e6d40165520ad5fa518689b000df44c279d73a14eb" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2b3ae89d3cd4476f334ce75db4a12329c0f424ecd499941ba298707892fa5146" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.18-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0afd0d07300bff164c2cb46a7b08646ec61501e5dc4bbdc7b5e29246a3875ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9579621bfbd39baacc8f95cfecc2443e4e47c6eff7eeaaadbbb4de5815a250ed" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "25a7d89e61eda8f08ae08f467b198dccc17e5c5b5384e6c3a92113e653fb1584" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90d2b4611311c20179168ddeac0d70083c7106cc0ae0eb692a37dbfc36f922f0" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9fc6877f6e32fcac6e58e9988491eb8ea059ccf25c68dc5f8b213a4d149f7c7" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a860745c473a8b98b57f05cb051fed3fdcd6229065a6b914240d7ffbaa448b44" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.19-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "efebbb67a0437da9ad67191500a6caa0fb28d3f84093bac39d2356a2412dd3ce" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2dda1a039c61dbd45c73251eed5c0b90aafe4345086e0d31cb2f152d80e94e4a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de9491add21ea593e8b2714b7b23bf3eb249bd0088e0323b1fb787c26d8db952" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4227ed50d60ee71978447e6d5218acd06c9a4e97b45584e1f76a7159df1752f8" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "816416f8b5e7a4cf9d5235aca1f140f170caec9cdcb26b0d3854340bcd3b7edd" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c34d427b278f3cc33adfc8592acd5fb638dcead55fdb80c24a8ae220d5d03b1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.20-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7ebdead1c9f6a5e4ed4ecb619654d7cd2167043207d545f2340285b5bf73896e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27deab2e9eeb91d34e3c7a6767bdaa62b5ee69ed766f1029dbb4d51b025cd2db" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5888303efb6e2d67e41b5d78d592b4a8d3097077e6f20267a87d0ea88bd0a438" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "973c938ed1945e745337495978262b13f5fb8aa64718f75f7411669aba713db5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d41544242411dd4b9f2bfca45e66717740ca5ec324de22e45ff1551d71ee74b5" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5f18fae3cc684582b2cd87262c51fad69db16d6514d792f117b2c0f0d831d701" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.21-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "910138effb7da8dddcc623e84679fafb6b2a4b845cd6246854a16a4233d902ea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "587703a9449d81bbd0604b2e92a54a84622bc93c4128cd67a5153317794b1511" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cabdbaeaca0b91180191d1da5ff3840031ce79e4117584ffbe6c5cf991fc21a0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b50bd5ff9d2c4d0d8620b4498ef3debb822007809bd8d583abd7f2db25a74d4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a3569dd67cc01847ce2cfe927431048ff167f7768fd08f53104ed874c8ea9ce3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08b037174eecb07791aabba6ab262eec8efecd313ef0900ff8d6c768ebe99a79" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.22-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b99ea77776b21ec56bf7b3caef1e667873de24b9f63480acb531d3b9b8c7ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3c36c0960222417b104ea40824d08442886ed522a949825365a45d627d8bc8c4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f8b671f04c394d8fd33f50c705e51d1768bd827b0f534ec957277bf1563701a3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29b3d8d9216c7e6111b8dacca4f9fc3f3471e9e68ab2eda98d309556fe273199" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94b1ae318bfd8043d3cff63d72d412389585912b38ee2dbca1fe56e4bbfdf009" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ecda818d9aed29aa83cd5682998aefd6a3b4edae4e4393d4e67e01da2775ef6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.23-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d4f13a93cf123378a4bce6a5e7c9ae354c5beebbb75cda6df15ddd72e2d05e53" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cc821aaf3d9342c2df7ab18a5298f4bed4eff28c86e07d27b2a549287519d189" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a30f75c10eecc07aa061faff750e86bcc972a76294cfe3ac8dcb9b6f88c1c8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c537c9880c2438528d3f3c8bc10e413f9b3805bb853adf446474d1de73e107a1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9a42feb9469927ffbea0815babdb4ca1df167e888e35f481bae4dc4c1f043eef" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33e9f8e38dedac75542e32da4fdf282804e014aff5cd08c457f8240f27d75b30" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.24-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "27c9e937df216c570d4ec5292532f58663cf95ef986bdcc844998efa1bb73082" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5c64a7b0f14dca56649d5444bbb8e7a54d4c0c3a9bdb6c79f9baa9428a2160c7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc786a142560956b5efcdc0a75749ed9ba538c6bb29deb910eedbbe8901d6d98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e452a2f2147dc22408a5d0795061666ceef9ffe4927ce835700596283668931a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75957254fd7470bd66ced0f981961aedac34be48ddd13f92cb4bc4bb53294d5b" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfad02e4cd60529f4f233e2b27ead7227bcc15595c2c2e4981e117fba0d81f7f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.25-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "990bb47e30bb3b8fdbaa123e41b0eb80029c4fee22bafafe7e131c0ae658fe32" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f69309b7f570559db88ff7214334a4fca4dafdbd54eaa35ae428766dbde6576d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0431d1b90c9308f9e5e159a042b358ff2ec9f4565cbbac667856479967db729c" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "63f9f67c7be549f05fe2c3720eb09c5f80436947026a62e1a5c4bdd40586c167" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa44b7325dca43c59576ed5abf131f6f858ed1668c06b308b2f2b2d4d9256217" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce6f3a3a2f6f48d1db333ba607c726032142bdf095d942d2e4ae5044c6ae5622" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.26-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a3cb2d1b71900d20b407f4b5348eca346b7ce0dd74c9a95cc17543f678e94a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8f0a98e8f709283137c2588bf6a713c89da9390a4255b8372939fa4dc3de0d3" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33352dbd47f53e660f996c15bbc7f650865de06c735c8891d0455bf592d3b0b1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d97a577b96bff189e60438424139d9ad112546544f2e64788e5cde2ed51bf83f" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b8c966b418d661678ebcafeba5bca9b9657d092a5a2a1cece289906ae6b07c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "accff36ae2c605244ceb68601630397d58acdee9901f0792b20deb6fedbd31c1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.27-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0e5ec072793d049af3954bdbf6f13868a7ff4573a64d7d0bcf8d213d3b77a0b" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91b0ef8a0138608a67cfabc8c757908c192b42e65c7c06278ce5373f2bed1b08" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e758b845cf21b801d97475a5b36d69bbfb8364a3222733d490b64f13305b9aa9" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "018095dc547b69a384e20ef2d0680a53046cd2d33a43cfce6b26d835df2cd178" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7d27ce8a58a810a2f755637837fcceb8ccdb8e78f1855df389eeb8256357f897" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "00d72d45ae175b5db9ddb28b064020f27fec3076f9edfae6afdeba54aac55560" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.28-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de8a77862a398f0ff9c4f130a90d7bb443812751b02a3c9c5fa0873fbc02d310" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "05e2521fb6e5319be6355a7e363d90a314a56f1c6d425270da33e9ef7555c3e8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0037a09d6a2fc23e4cfe42c0b33f3bbff803caf7a10207e24782cf27018f0b77" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06d246fc1c7368352bd8a50fb531dbefe97bd5a6fc5fa5953a0ae39ed3dff48a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1f6f0707afecc7c984b373d92b78416b0b9b5f019970d63007120ed48c4e7520" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91d57ef3b458a66acada5edd666a4075ecf52551516681e0df1e79a016895dc6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.29-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d512a4a2ac982f65d23ed5e6ce9de355d49286f30191794b879b8afa4109a264" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8e9e38efa6180fd4677c44c9381ed031ceb966d9b9a9fe3e1a86eede73f8178" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab960b783244c1e19e8be378b8b3962f8983b4464e2bf78875b136295c91a2d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7b9202e93753c37270ae00985184d4752d22ba6c61d0e871fa6f549c30b62919" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3b0295ee0823bf60e8bb49a68901d3e0d830d8a458da99647ab6dd4fc3aa5a8f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c274b0fdfc311bdf4dd52a6a5403692d252e214a1cb27c91573223139da428a" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.30-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09993c41d96d51cdc656bbd4f996124280d52e1a0ed2c68bac1cecb23d1da108" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c423b779ee5a7c9e047856d7346d46aadc281ced036dd804a24c4f6f39acedb" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b3fe863959c4b075092d824c1c3003be78a2c6fb0949d12cb03a85fb395e3a14" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5628f47608b8ac16030a9ec5f30c9979c2496cd1a72fe77b8db295a4ada58205" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b2a57f8d305cc42d511c35b9890d7fd20cb46196a677d1fbcc4f8164c961ad85" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abe185385d2607fefd1dc126b72fd1d3f19cc1146bf7ad4d4715858cc70f7cbd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.31-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab396ab8dd3b627e0467e35535f6cb6bb29efb475986f7218cf2322946e4e33a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "919f18a74e4fa85d8b3db74e34e1d41af10b1e9a78fae171be7e42085f8bfef9" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dbcf13152499e43dee123bf8d3a25aba16f2f4cf287975187b9f79b62495cb53" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a84f09164cf0260727e82e1e43ace5aef7a8d3380e0602221d05ece9230fd87" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3a9d3f0358852767babe84ce16fb01e52427458776751e11d2024fd77694a0a" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1ff890de9c6507ff8a2e104e697545e1928eb4f1557a35e06f7c2168478507c3" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.32-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3581ff17669463882b1dc477d2986b6e79c5769df9d0a6e566cd073da6d7f18a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a524908af85bfbbaf822eb0057ea5afa25ac3de3d5e5dc06e3d5a9b56d65957" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "22c694cd87e5c6520fbdc833bc6c14c3d280fb8d554a30c09bf5792df4d8dec3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02033552191d66067ea1af868c1fcfaefd97aeffbc82657f4844e6445a4ec31a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b54ae1214fc50b38a9275e661fe62c756cba99acf2caced9b11defda3e28871" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "62f52c8b70c789b4fa9c0b966be740950dc6df235a944dc052c791c6f611790b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.33-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a080e5dfbf57a9f85b70bd68fb5b1e442cd9928c4f451e69e338b24286eb441" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "53f332fa798dba743ad30e6967402f7eaa2c521f21c4d7ce76f2f1c55ff59628" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "29e47f46aec03efccb0581e3f6f46545c45b074907c77400b809f379a629e5fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38f2e6d72165b8e47b54ebd7e2c9a7d34c30ccb428dd98b4bb7538475794533b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1693f492941c77081b1eb0616fe61c5ce4a25567bc57b72d5963fab7f61f809" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e473201c8c7208f0f41088df4a136e40afbd1fba9f94f880cfb6c1f8b672c469" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.34-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d5ef6fc956a6b843d8653405ba040a89e6fd49232f84946cbea47dbecc2f430" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c530b651a21550a050b899495ab24320a573c79f66b2f0dcd0352509d7f260d4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4e0d9694847b4af6cda6ac48675ff99722887d9fed8907af4f5e83c170f0cc6" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b2d28f0efb9f946059e96b325aa1981285cf2b108e11f475b34d38d1e41585c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42dbcdbd8e8ceaeb79d0f5eb4367401bd89022594af9bd0acd6dea80e4833c22" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0f962b13b5f3794f534ee5f28b7fb912b5693e63a70a552764a0e8dbf5d0f176" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.35-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63fc59f473a9b09cdbc3d6d141a93c06974bb5f5f17849bead025a6f495fb3" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "46dd13c9d28b77b7acf997845316b712e4676da5c40c7b58dbf8b586bf3d9be0" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "44e30aae1e93ee4d255ce66bafc59ad54f11f263f61b6738b3b8253b4d668aec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af0f9d751bf417c5f1da9cbe91aed19b5d367803c736ec6bb2c3c156c0ee1631" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2c332b02783c831f088fa0dc7845479968681c314735075b8e3eadd064c024a2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "332b41979a2257548f9dcc9289470928a5c29f6dee3be484487222f0cbe3d1e4" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.36-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13fbc474e4a13ef3f3ee4ec73dcf8b62ca9a90d5639d0bbd561aba4198418686" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf1e5dc9fa0657985c8cf78c754936279bc64be0827aceaaf3764f3eff955964" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5e7e40ac27507737aa769c96ec81690a45d30312c41e57655d52a87a83b22a8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfffce78ebb65cf2dbbac9994f24a871995580d74128bc629f92c69a669d9fb5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c09b7060caa713e153bb377ef1670f4fcf1febaaeb18fa9a1b843eb55923d899" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e747c3fe88345cbbc30b5a670049171d6ad7662a554652bcbd2ae8e7fe68d35b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.37-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "727c0bc9e580a336344f5780dcc99aac209f99b0ff957fd0727e75738261a122" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c99c8f39e4184b4aeac52d4ae842c63cebfd1cad406fe0bf9c13fbf6dc4358e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7230d3c0d6d74804deec9a643ad54cc1bb06343aa63d467e1072d0ea6e0c7a98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6ad328be144a82069f3bddff7138201f3911846abd869f1cf33a27d205a3f08" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0e110c6966db94516a9f5c0549de6378f8534aabf5bd649eee5d217a5747f21" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2fd1dc5a435d683b92c2fdde6461264f8af66dec7b6e4abd932e0815f13e6ac" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.38-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e47757301e5593d726c82c99ab9a6ab257bdbb5522f2ca6394ecc9a254029e01" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "952a55e94d5f618bc2f220c014294a3cb80e7845972c03c83d88c6c53b7bbc5c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6eacad9938e63d47e451895c9100b0a27669a12791478c5cacf95edd4ae1b200" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "261d6da1779a74f7d87c6bb03c23e1259062b86e27a944a2100ec7ec90cd6ec5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "845ec0d762303e2f8e42a6bc0fcfaa7a2472ec4174ad3b7d3d0a908b9ff9a0c1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d4e955655b4ba7bbc2861c9fc92afb51950a4bc60cc0645864cdfc9a902365ea" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.39-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f008d22a441d3109344d1de47504589a914dcb4843815d7ab1fa439f11a2220e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "65a54011cf84d3f4584e7a88731debf5910208ece0bc084b38b4ab3300fb4e1c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3fa350e2860f9c58bbb7f204cc094b9437e04e19acb51fd9266680494b35fc7e" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "876fdc2551c88de050000550577c8d2a07b994cd791c2916928809bf69a1cdc1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5862e467f6bed6f51cfd8ef8ebb0b249da0fa77d6adf7e9327935099066c577" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8cf4f4009336b82e432c9fc0d7ddbc21631939967a08eedd69b997f1def7d7de" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.40-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab6caea8cd32f65c99d4b552210cf97b022c8cc9686e5569aa4963758f144f86" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf13056b2c912878ed117cc7553914e16d34b29a4ef15b70dd4e6ef670c40543" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0435921a3bfd30e4e9291d145b26f9b6e077a58ef808cc826365f02c7ee492e1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50ae990e010c2766948bfa24096e03677dc06ff28e9483f2a7cc07cc9366331b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b9fd9c5b73878caa73c47220f06cde0888e0722a7da8ccd1ee59465e52f41e9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c413a07c05ac31129cafe32faae0b9c252dc639d0122a6186e420369eaad6e6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.41-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0678e3b75a072b024bc1e50647428931b2737b3104613f152c2dc7ce2f5e289" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5da236120d2f9ed8f8ccbcebec580a2aee212dd351d5a224d8067643b2abb98b" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e1e9babc2319d4f8e72453996caf486e3bdc46d13b6719e45b4bbd0e5942cc8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a690ab21e3f888e0e7eaa19911949952661d673571dca54db45d6f43470e036" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "709d63b47982687ce23b3868db58950f46bcde0520dae87fc1658a48c3bbdc99" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89690db25edda9825785752ad1740d8069148bc8e0264f5b482d86905eb63a01" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57862cea72229938e7bc22c6b9000d497732919386786e3a54c5702c51ab7443" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4af8331d5e9824efbbad0dcb8c55f7098efe1a8d6b26356dc6cb917df2d0222c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "624b22f27b49136965ffc19ee00229dfba819177dd0987afadabc747e0ef0eaa" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bc8c7ffe937751b9f602ca85a49f1be2cae4afeea9f7f3f73f77fc19d6f998e" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c36bee112dd3af5b378c6111b979509c7a23c58ad89657a9adca11c193871f2f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ac34cba2e3e55f42fb5d530e3debc26fb8a152a783852a91899c7e14f84667b5" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6fa75b4cdb2c47d055ab2e82cc1147ea28c294367c40b7925fa47c8cc8ef2dc0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da154c09f367500da02d0e4e25e028ce83694c53f0ca75b6c29ab07ad079de3c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "948ffbcc4f74edc24a47fafc5af382d5934595f54afd20f6dcde00062cb35517" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a45b6fec76d3b3713215e26d00dd37e9c2017b54ec0518156a842cccd5861323" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3eb977ff7a2031024dab366e144594398246e126c9a65526aa7ba3529c8944f1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e63be3171eb638becf9de012e18df91c43737f851100021fe86c1cf98a62558" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa46efea07f5ac886d78804cc0c7bb8d9e6393938a153054d4044dd04b5c4f92" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9c804454a903d7ea6bd119b668d8a28334acdb147247ade59924856922b01e7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "550273bc3ccafa5d8b2df0bcc637d785f7ebb2febe5ea84c89ed0c4822e745fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "371e605d6c65d5464fd3ac4a780f64cb095aaeb9e9177d084358501f21bb72ec" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c5da3ae9b7dc94e170a60ad23977977351aada59c40c08f3614a0b5dd058be3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6fec88c43a72df9ff0a813fb10564daaddefc0372cd7092e859a3f3ac8b896c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.5", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4e11128596cef681bd84bfe264ddc9f83ce4eb8a60eb195bda83e8f0c4261959" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17897ef3d792a4fb07364b14185519bfdc880534c4b1fd040aabe4df23fc3f96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9177556979825e5b635f67bf5d342faa425dd2b37b0b775fb3490e92e8000783" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b41aca5238ed0c6eecab98a713390a5da18635497547402f1027a482145acd69" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ec250bc7acdf12cf26392b5377a01b537fcdbd18749d075f7add3892f7b3ba9c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "10131c2fd8699d36b73148966adc2cd81bfc852f2b9835a9471fb27f463d2220" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.6", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4556e676b20f374560df2a169ea97f2eb97dca0428e69cdf6d5ca3ef256c5098" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfd7ed78cf07837a393979cd110672465f97b3fa03729496fc321fdae39178a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5592cf6d958ecc65dd6004c5a563927184da809a5fc490b9b339b08060493a38" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f74cf6704a326c0a1e93e8572e3870a87f147281bf4dd6f9fdc10efa423efd3" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1445e51499d0e7511d945c2dc26a6614f0f2b621a7ce8dbf2c0ea2faf31004fc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd7f8ebd88e1af74db3b68f4fe78e91a07edb5865ee05594866086feaa09626b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.7", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c74f67391dfd3177a7faea0bba535c96f2a241cbe1900ab988263e54b042cf" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "86054e5bc2b81a15122b4ea9372bb99b006676a75b1245d122d960e6b48d0810" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94426cc5667d12f24dfb5a4c26635f7f0bd16ca8a74a4b5b17c3ad0f6b5870d0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ffb21d7ae525174425c5d9bfc0f0ac06137d82740b2a0e89099e84c31da5ad" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "219cad26c2629c4b3411da7d9bfd8d9b17ba147c2fa6d3a44e56265bb6036abc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8651044a1c03e34baa3fdb9daf5c957d5ddbe86e50ca08ce32cd4b230ad4416c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + } + ] + } + ] + }, + { + "id": "microsoft.azd.concurx", + "namespace": "concurx", + "displayName": "Concurx", + "description": "Concurrent execution for azd deployment", + "versions": [ + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "048d8951105fb1620b4de27c66dd825d27eb43403bab6a3bff8f9824035a7adb" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858ebcaff372a78d85f3a192b67173d3843bec34d68cfc67e79e81417908f74e" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.finetune", + "namespace": "ai.finetuning", + "displayName": "Foundry Fine Tuning (Preview)", + "description": "Extension for Foundry Fine Tuning. (Preview)", + "versions": [ + { + "version": "0.0.8-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.9-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.10-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.11-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.12-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.14-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.16-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.17-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9337e7097479e80d563df018fc8099003d5500d7304c0d7eae238266870a9996" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79be23975c148b1cf7918316fd02da63ec87b925485c25189b434be7df36c4bc" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "330cfd1aa5af8c73d3fdaa86d36d4f0f2c7d072cab8136916a8360f0bcf8d197" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f40fe397120d965de80cbf3278fb7cce74b816f174e2fc77ea50de97f986d229" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12434209e2009ef68d8974eaf1a57926204c084057a0dd418d213cc3c32c73a0" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fa51bc324fda2672bf863b8d0adb427d734fe266d842b4ba8365c1fa0daf5143" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.models", + "namespace": "ai.models", + "displayName": "Foundry Custom Models (Preview)", + "description": "Extension for managing custom models in Azure AI Foundry. (Preview)", + "versions": [ + { + "version": "0.0.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8880a66bfa3a1f4e2bacecb0250c5e1f9123efbe1ee3dff9d0fbdd5b936b789b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6727395151f92024a04fcc6014670825c2acd1f71770206f85538d5d3f2dfc8c" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "584a0182197f8da11500f554b6ff2cd6b7c1fc06871832cdcf6465e7d8a3cf9c" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346bd40ed1a12273adece0533ba7ccd847e3849ce24130124b644e85b5835c42" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7f2425f5ebe080df17b28d01b77d14805ab72ef1250365086ce464c6d5749bce" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6356178c246cc7db2d9b26ffacb60614581bb2657f61c57d56406bf4999a15e8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bd712e6c072123ea2232033e79157f70b01449d9dc32c02eae021ead427b794" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f30e0ae33541d857d799b089f9e2a9d86f97ff729fb14d207deb4e468d327af" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0a64a188ade94a54cbcaa9b785c769076758fee596d44f13428f0955f9756a0" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6e39b71a30715c498a0747ca9fd63f37adfc9bfcb4177d974a160824c989ab" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "392c6b8c2d5d11c3a69d66218f1553010d7fd9334a7324791339cdd7c77a4f5f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f6b74e4eef1fd12d3af0064c9696c4c02f2970477d213ec51c72f7361e2cd24" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.3-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2f41da14b974822f8d75aab595ee99577923817b679be587b5b82de238173bb" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a155a25bd071319312ab21aec60ee4bd74e265131355f50aede525212a95876" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "daeab7a467679f96a2d1cee756ad80d4f311a331318919e7b6e7058924347db7" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8517e796c4bdaa0ea264dda2a47369fca2155a45e7cc38745e723e5a4bd5cbcf" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "597a43f4a1dcb0fc8ea4136736d872f0eb9da33a1abec8eb2c9928941c0c0a50" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2f3af40fd4d877b835252cea9004ecbea6df37ded619ac88179ac731e4301763" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.4-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4ff833b38bd4f1614b2d1b649c03c3db27f31558aeb006bebf4712b6ebfe37b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6901bc3563843ba475feb46897e9fcf7a75f84a2cda2e3ce468ad28d2a527bae" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "140975c5153696f820bc36649755922c7893d49c230bbbe2a23eb3372a4043ab" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1476d0b061027f708cf00113ca503cebbdf850c268b7376cfd2936d1bd233a28" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e95ec6caf91c64b7eb69a809e0d78fe46ea797b6994ca34f4ef78da10ababe4" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a778236b3412163d73574d298d345bd27819a3b3e3985503a7ec4097a135ef97" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.6-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d4cfd3380b1e6ad851bc5c45a522121c73ed3d72151bc6d68be0558780a82e" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "647a2801ade0fdeba43d9af301eb98b093bd146e98689356f745e10cf73e5c47" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b9f92d4c8e8275c099fd36909e2817595c403b0a001ec22803e56d9680d04bc4" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97f5c17f52a6a10d160d4b5a180186974d17e4a63650ecedc51a118396902708" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed52b1683bd7550712d70d9b14a5b08c2fff65fabc3548a7c155ebd9a1b0ae0f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "215b9e07a14aad9b72d56ad7c4b7b00dbf383d78b5bd1411fb98ddd0d6923cc8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78da390157ed64364a87e56fdceac5b61cb8b2f80c4d0ed832eaa657fa238f83" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a73ea7b51a86234b94c4a4c8526c9c14b4c5c48fea1d4ac3381b0d79a4e094a" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4aeb904395436a77d2decf0abd71484bdf93a5be93210bd47c17b8cf8ce2233" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19e6320e04e8e9e8ad59a339ae765aa2d9ce9b7740d0cfae0c36e95043c78350" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf529aa5eab93978d7ed9e489c75e767a3714a7107b9d12ad18adb10f8817ec2" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b9af9e7ab48030f82c7117bf3fd8367715042806ceeff7538aa6cbb5efa24db" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.appservice", + "namespace": "appservice", + "displayName": "Azure App Service", + "description": "Extension for managing Azure App Service resources.", + "versions": [ + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "556e61f1cccb7fe30018c0a8e4bea6a5c2dfeacae280cace3884df14ae5b9757" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "702c687a99fb5465a0ccce2ca5f0827e0da2d8e7a39ff86f1a0361296bb80a47" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2fb4efb9e2dfdbfa9ad1d54483213d38dec19361343eeb75615353a7d93a3448" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69204c40496bff0d6677ab8eb811d20173806a588b8f89572ab38157328c812a" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2306b741af14700cd65cb6efe16adac4050c7c84413c7dd74376c40e952dc1ee" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fc08097662690218d2ab4a42d2bb634b4ec05722fdfaf9f97b30b5b570f5a790" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5abda3ef17a4fbcd058e46f5ffc6ab602bf9570cd0a572a53d51754f7a29cdc9" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "db9a0dcd0805d30d0338a259335db0b98d3b8ebb7eb67bae214e8f3b83536340" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a10b103030b3124e4326f31894ed5872bfca4f95b83a39cd213e019a49d8d8" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0dcae29dccc5d8fee4c33656ee7959733b5c6b35e6d4514699452b4757423ac" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "aeb86c156e482a823d16f347a91b6263b61b74a57720cff79329a76ce044ea86" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f55c50e17075a1326aa077a37aecd0aa03413239ce277572ebc55d440ed4fa1" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.inspector", + "namespace": "ai.inspector", + "displayName": "Foundry Agent Inspector (Beta)", + "description": "Browser-based inspector UI for locally running Foundry agents. (Beta)", + "versions": [ + { + "version": "0.0.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c388f95d8822ecc5f51ddd554f06b846ea9ec7a70d4ab00dd6ac7f1876cddc25" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1c51712823a4bd31c735e39435f3c82fede78593843caa3267d23035f0f7020f" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8955ab5e9fa606f398f0fdc01b0e07974d889711c68d0e4a059f31ba67fd5693" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7aec619864df86971da1479be12c29acbe877f2551e7c4b2c6d74b0dc5cf0431" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "126fe267c3b4845a05344a873c17ad7e5689e18478d05716d26ecc165d257829" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b97e3579ef50cb2458a10add8a635e13f4679fcdfdd39834b3c3dc16e0bc31f" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3a3f6550bdfeea2e83c69a65ee899c04970b5810ea2ca605f7b3b530cb6a6841" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cca17cdbfc807259242ea390eb7f9606a907c84adbfc59c83e818cafa13b9e62" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f64c28f6e97de7ef1743d51f3b2f1dca4537d4fdcd97f5668ac979928eb82600" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9e8b2307f40821dde5e294ec010c2af141dcc67bf4e1ec67f2e72775ad78b6d" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "096320484ffc7ea089f0153ddc43c9d1b42ef8d6d603f6afe004689d5826ebed" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0733c82c6839df55a8f8738ec57675426bf48ff37c311c6321de3139ee5c8dc" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00349abfafd970c42048103876cd0d9beee9b65785171a276fc9739bb2db585f" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "44bd6c40686afbe7cd528ec33367fb59a880e890e978b82417ba3b78eb6f1a9d" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d03a8047b4ba40b77e20625ec9b5f5ab0f45541b43990a2c46a3f03e5923add1" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "449190739a5215da09496d1994441407a44816efc7631ab027091ad4126effaa" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b6fd1f8fcd08f4c1d06a2d5b735a30e84494211725e022d18a6a7d989a73629" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4572fdb982f7d68d8cb61bf3473c7e804a0b9a204d9470593e7dd10a6931b22c" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.foundry", + "displayName": "Microsoft Foundry (Beta)", + "description": "A meta-package, bundling together all of the Microsoft Foundry AZD extensions for easy install. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.25.2", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.connections", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + }, + { + "id": "azure.ai.projects", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.routines", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.skills", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.toolboxes", + "version": "~0.1.0-preview" + } + ] + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.1", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.7" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + } + ], + "tags": [ + "ai", + "foundry" + ] + }, + { + "id": "azure.ai.connections", + "namespace": "ai.connection", + "displayName": "Foundry Connections (Beta)", + "description": "Manage Microsoft Foundry Connections from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bbb15af6f33cfb27615f278dafd8b1a9f4892b4a5b350ebb4eba8ec91b9de1f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f73a211f7cfd0801e6b4e16f13d89ec48a141fd5f07c8bb9a7511565eda6479" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6aab4b4c60bc8fc6150e7beb2ca6e13e3fd977e57f2bd7afbb756136844bea" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d74941d383957ba8c37cc340e0a0fc10e8e6dfb2bbcd0d47916a5a54b75491fe" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5b929c90d8d47f9bdf9c0d6cdac0772fe6a94930ae5940ae5982687c30b03065" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b19ed9f9040f34914bbb3a8ed1e472a5ad4663381d4b4a40f81112e881cd334" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0976a78739040cd6c14f3d7564398ad31611ec6ad77a169853c19abb7a66bf37" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f92de7cf1472dc6a546b6bf59ce42b8c4e62fe553cd304810f88f6aeb751097b" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "58b92265a2d19783901bd5c1eae7f65c13e84c94e30a9f1cb14ff2c85f5b018d" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "458781ccd850985372913bd4398cd3ff67c0115292a23b6d0fc7d1300f8e8394" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "98dc88b5868da649330bdde7ce84d7d674ebd5a4044b75edfcd6556f1b280921" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0b787373481ae7e845246f19f5c08b96c90433f5b8a6db72e6ecc51501df9272" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "379c335983b4d193681572f70b7b62049693be632a1bfdcebd41a2656c865eeb" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "93e07a6bc78ac0a4b08850d6652f673ec136ff3c9b4e854fb9b991e201872129" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6741875f8ccfd33ad121555dd68b8ce51718adf455366c869498fd1356bc78e6" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f34c6778b701895f7cb35069ce285c4866a7a5225f9c002967cd236e266885e6" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57bfbe8f0b8bfe8adeea31b17ceb6bcd92acedd07b1b21ddaa3698d74b0c1e7f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4e43d55c7d18bc945ab3397051decf9e2706ce337c462343bd745b9b9a2835a" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ee2560f64aeb2ecc90c806fb31a90fd69cdc5b9f329d7bf9c9ac3971968033e" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78b7bb4e5b1714fbee095b7f3657fa8128a7aafbd280826983369ba404897c85" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cbe6ac426fa857acf07366c8bbf849d2d895322a5b6e0c6ccdae1669b1f2bd" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7118acc566a5f7ddfd5679ae39ae45ab805e3fcf608429be916a38f41da28ab5" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0925e403dd8be407f6115f0b2df5d8ac8d08375103179ad6afc315f7730dd1f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f3f855de615f5ab3ee4ec3524fef4af4ea45cfe82b3062765e0abbb3aec94f60" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13c7519528ad81f41661591167de2b52a8d7f088030b37f5e838e0dbc3eeef9c" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08d588ddaf81fe51c5e54fab1df89e130ae58a343f23c71f1afe8eb126cef0a5" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cf784aa617dea61402fd2dda2d1f4313311b4f56b007e522e3d656415178e79" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6954134a6ef80f989a10a83f36e479668a4a428defb8cf3dbf24228c09337387" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9474a3f7f0892658dd0b6256842787640f09da28923a14634be0fb0cdfcf8b8e" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "248ec2cc43722f6307baa5787497d3dcd6455feeba1a189fac0843be67ada06b" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a42a54a58f746d7f4b9a12393afa18a5a08a3355fffd0e91180b139d9730c83f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7ede8e6c8787d8a48f3a71193c3414ef3cd1f57315f2f9a4d3e72cd8210e9672" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e07ee36ccfb19660afad8c969db8e877a501e9dad93a8f3869ba0ab4a4cc4490" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3658e111caeaa77d7b9c42e8304c7f852e1abf5881db028d96e3911708abe4c8" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9056925a09677e354f13c0e02bb9bc0a8e43538da6926c005ba884fa2f931ab2" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0fd9f7f74975878c8db1d213d3e52bdd17843d76ce1dd89c9f6ae9b4597b99f8" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "connection" + ] + }, + { + "id": "azure.ai.projects", + "namespace": "ai.project", + "displayName": "Foundry Projects (Beta)", + "description": "Manage Microsoft Foundry Project resources from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "05ab0ec11fab528f5e1b0a8dca18106a36cce43fb43fac1042adda480b631a96" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c5933acfa44010d8b22c5d6aab67004b45966bf1c727faa2243bb79e42709f9" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd8adde884d890d014af00305d5809b4b8ac63e7cffa0491ab4a5b0d6ed7d961" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c1f0776f370b944d5e2bc6f598c0a8fe774a2d366435bf67425d422e7f82bba8" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab46a77b23df002ec6f966d97291e88118eb0949937aecacc1f910561ac46099" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "530938820b0db2340499c8251d28594a793146e5a0fdc3ba3e21e2eb28caf731" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09f1694f36ef38e09c8a8bfcfbd9de2426809d59ffd25018371820f2c9d7ad5f" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a70243e09373ef47022c18984be692e849e8fb9e237422fcc31e940df922ee4" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10d6ed22c03a5bcd307cf2e9fb5905f80132910879e8b3a0f3d15adf0897aa83" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f5e84b1570168f2c3d96ee293d6d743e4292c1ec6e7bfd4a6a57aa2c2413b58c" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a73602e109df724066d9ba0cc57c799978c5a2c5eed64de87b4024eccb9e0f22" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "22f55ccd9b3338d8cd20a75643d309136e3ab5cee583694638de8ce1ef5a5bb7" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b93e6df3fdb9fb7a0bf96739f6d3aeefc64da8e770700f2d436380415121394a" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0264ccedcc703f611db3512eebb462d7c2b23ca19a7cf3765a999d3dd484f70c" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0079e348224a9c028c7e4026e5cf47a89c0e94b0d1dcd0ed1ed4c4dd5fcea464" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d11b09fc5b5dbb196181f753a197cd8cfd042ea9d4e2899d795d4e4e77113e81" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "14bed81d4a038cfc8b6612c766efae2b7af4bf7356e3d9aa829230292ebb380e" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "45ba06b1efa449712063d3d2e31a74c9b8e0c568bde37675f6c7d7733365cdcf" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions Microsoft Foundry projects from azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1617009be6797d8c3506ffd979aecac2394cd5d216a218eee38355b55932ebdd" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7eb31e5a8f396760f30d702001d9a210c6ddd50722eb78876580116c513b37e1" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53e92ae77f346ae98b2c02f78755e741d97ffcab363046187fbc316cc751a2f7" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c3280f411d46efa017e542fac5899251e9a2b73499c9e5e1f26eeb958ce3bfa" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c6443394f044be8a15766f683d914696148d24a6dc88e1f057b390b6e7b4911" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0dc607626708a7fd6a1c46494746bfc8d84a66acf655f1eb162fcafa7f4f5b0" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "project" + ] + }, + { + "id": "azure.ai.routines", + "namespace": "ai.routine", + "displayName": "Foundry Routines (Beta)", + "description": "Manage Microsoft Foundry Routines from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "104a6c37b12dbf9df0aa12f8a6d6e65ac3aa6e4e7620008a3396c00a476564bf" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9807a195ad454869ef7241dc5ee604001d5cfa866b63fc2add089c8f8ac8aa27" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00357f3f43e9c560e52b4ca4f752d02d07ae7ca048eeb288f3f61e3517f5cac4" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be7d6e43a7fb5ebb04babaa10caf8a40318210a241bfe2ed7d480323b05bda4f" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "991bac0c60820687da64ad08d4da7a055afd159164baab237961b878ef779b3e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fcc69e80d50a77eb737638bbed06c315bb17e2b5e108925a7bd12adb08baf0a1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "48b7eb6ac648fa955f08a3f70d1fae96289a18a39e1535d282029df639a27188" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "385b0e0b3682e6903929f7f8bdf430b2c4a9ed15c61dfea332c0a50afb7c7b7d" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b208caa652e492698bba87743a9eabb6d27ecd17120518018dd04eea0c5dcb40" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2c33a81a1f74c2aa1c58166bcde50dc99df9a61c953be80df43d08341c4b51f1" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00e381eb9bdc1367b633884258c2aae874cf51698776094858963973394addfb" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be4af31db97a694a68feda347cd0bff1f2552d98a1f18298b9ea5e1089b86f32" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c056df668eb98dc1e9f132ff054a607a203974d956930c174758f344ac1703d1" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e3b5c28a57d415af6915651cb033e26ce7235d953782353c3df6ee40cc4df4b" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c30b58c07e60f46353c1f4023bbcc18cf6c89f2bcea1a01b7c54988420737c8d" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e7cef5f09d65ba992cef9c559e0749f5747b4c4b47a16ec10785f30fd813c775" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d745b1485be738b8bbe9e0efb028543f8f9e0dee46664ee3d650d5f8b4e7dd8e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "84c77a3b2cf8f3672ffa960716f543dc2f9ecb7a7f6222eb4aa19a293be51511" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a61b03858587e97c4eb72e108542a95066ccc5bf51b740b8f64392714bec81ea" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2df3af97042a57153d77f3e278ddc12c04dd08d03e7ae6bef6b3aebd99216409" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "80b362b3a5cc01514b38af373e21d3e3d2f90edc87364d976173a687e08bec0c" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab5af0c8bf5931b3869f7d7d57ccfb6cd8588cea9b45a4232abc9dd6b512b43" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bbe562e377c547cdc30d0ecd7eb792e2bb22aa968ef9ff78974c8c9fa7ff76c8" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c58a248ff67bce7168e79f301501403d57e84c68e9a91756825d1d5e719e4db1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "routine" + ] + }, + { + "id": "azure.ai.skills", + "namespace": "ai.skill", + "displayName": "Foundry skills (Beta)", + "description": "Manage Microsoft Foundry skills (reusable agent behavioral guidelines) from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f804b02a9bea8e4574bbba9115d9e7f987e2cf1d6ff326632fe4cf6ab805c32" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8bcce6fef9d02f0c41d66bb1210855adc8dcb60e42a1f72eabf554451145d1a6" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc2c5e8007abb97602f0dbe9b7abce31c829b58cfae94be2ae3920c64720ff62" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec9435f10028cdc3527c077f3c1fcd13ba1691e66f70c3345831b6e381e49fa2" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e3dc4b30aef457f98d5372ed898b3e670bac4649d823673f382fdf79db5562c" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c57b9d78626c838e4d47861208976994c125b76a1827c0795c9cce198544064" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "65b7aaf01e2383db13b363634fc32935e844316c3b293907eb2ba4fb1a0593b6" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fad46b1f02b3bdbbe270f4ef40bbaecba893854b1ae45bf7e886347cb5ee1376" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "19dc1283bb56f121529776bb496645a2e33f00c8ae55ddc883cbb56a0264cb36" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1f7185df316798d3355dfea090ee7ad5ed688ea176de256258eab458ed5c50cd" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "943c80bca4c61245b17312d0d3bea89b38f210c7b76abdfe7fd505c75028069f" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69881178bc433cdfe16c83dac9f0e7657b760c7f02488d3284d348a3854987b6" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78cb172e59f3593b5406d8f8a05d1d03603256e26d0476c704862d7de7891650" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6941da75dbce6f515b6375a5c02e5a188350b0ffd39a53d24360652ebce0fd24" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ba70b8e4c85b48bcf099a75ead9c2d6b26755325ca24b2d3458a1b0947aedda" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "11761481e5e8d1d1b9959278b844175a744e1b79ed343a264b9019ccf80f11d5" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e1b5e4994b8f3e81caea4ea9b775a1da2509c88b477935734113d1d0827ba99" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6939e50863d18a834e3c69a8818eebf68e9a9f5752442b7ec016ed1d86070ea" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d240ce6af7a65f53a85907109cea295923f0efdbf035756b3eea07c8e51043ff" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aebcfc163a2a83f51dd714bd47ab878a68d46d4ffe823b95b5f886823dbeb540" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c8e50c0cc43db92a18483cb58bb4d3eb8744d6b9972d806591f6eb5c149fdd7" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "319d265f95c2aa09e643e02fd8a762703221b7ce02a3232ff53ab68872a82e52" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2f8aa18dc971d003286169999c781722def7614e4f90c66500bec8b86a62c1b" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "230bbf7b136fcf46dc262d2c6290d602eac086cf4562d93e8bac12a83eeec7d2" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "skill" + ] + }, + { + "id": "azure.ai.toolboxes", + "namespace": "ai.toolbox", + "displayName": "Foundry Toolboxes (Beta)", + "description": "Manage Microsoft Foundry Toolboxes from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1609d3550e18806f381003e8c5869e517e750b5434571916dd2de44cd2e9fbdd" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a14efaa002a68498dead6e6b3834e30b7a0a1c7a7796ce9f8987d7199b57e3ba" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8734bbb5d01a6fa15e9dd4b3b827469b9a285343bc0ba0db208b15badebc4e08" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0376494263e1bcc1723cbfb79542c1c63870dd2ea447d5de551472293258e105" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6d67561df8233e1dd520d99ad908711f801a4dd0ce518a68936b0219ea817814" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65ae168b0405a86d7435af84b2dd6d55139cd985e9cc7509d38f2462d4315a" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a7bbd3ffc3bc76031730c843f67c83d3f9f859e663065e081cb3b0fa6d015d5f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce84c47b2cd2c03d684ab34ccb1a642109653c467c179164606bf37eec6cf26c" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d28f2e307115e8a6a4af149abd973e301a76bf6a79541b7777fdd106a407d032" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6845078710671ccd7f6cab96c32024bd48d1ae0072fb2ca0612aae8dcb4c3d5" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09071a9389dcc849b662e0f6685a32eb0c3275259fc7a27f6541df68c5d9cf5f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "772ad814cccb2388278542b7280dd670097b377fe0a677faad8564adff194441" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7659e18ac4563d4fb031aef321bff58fa7bc793a20f4c8f0eeb8bc03772544e5" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e2c8d8d55c7b4515a7ef1b9697a47a4d63ba950b7368603b0a234d2e51e0c26f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a302497a8e56656bff3497fd7a62e15caa6afda398df9f0b6b9883edae77e671" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c419817347c5c7edc937a286804d3cb0fbc84aa9888954b8306c095a6ca2558b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d25149bee577e927c9687cf0cf99b657a3a76324101273eda618905a55e4bbbe" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fea4d18597ee88f996a6061cf18b9f8e413b4debf163fe0ae8de5dbc2d2cdc63" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e4210a683dfd0bbd00ef0c4ce1fe433ec59390de7b69a8902ee2fcb080ae11d" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a805c24bebfb1a0f09606efff8f5770c23af9a0b78e8e5055075bb08f73b2b94" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "209d4a62ab8a9f44eabba5c6d1a13fa885a1c2644128ab442935602f4f041141" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "650928d065b486179828c4fc4c8dd67890ebf5010f9a4726a26c79bcf7edccde" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7103983de5ec47bb293ddad3ea67a6bd32081eb398406fa96f0a6d6de8e5f6" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e8224e29d55ab2d74b758aa81feed8e334f8f3f8774c3796d62ce1896856060d" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c72f2364fc36f1302ed985b78646ae13f466ea79b2cfc3ec494c15a4cbc28ca6" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89cdbaea7e44ee96c3f666a2c70f5b7f1918f9bb18899b9756bf35a584f42ec3" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bff025e857694e1017251577ee8aa73a35624dcfd0629d420cc7e7a067c7065" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "795ad144894142aa3625f462ee76e8a425ad80220a8c929efb6eaabc7f177887" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53cecc106285c5a535846a2e29732ae5cd439e876e7e57546a5b76cf9f0346a3" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "96d4db3874e02c538e42ea83259dae51fead85cfe6b844f793245b53aab492fe" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b48f837f11260112236b18691f432ebf5ac1f1dd9b6e63214031d3c01a8235c0" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bf16ae06048bb13484e35670395c2e1bac59332ddfdac2c25cab373d7426fa8" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6cd9e7ef35f0cc6e5496871ebbea64f51c34bf3ed33fd3822d6611b4c8685435" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bb2b9fb65b7f9d5725402553ac6ef6d8d8c646241612353575f3d17db496b27b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "beee2ccd845b64b6319173dd19284e3c2259c1c579887a3d8937a6988cc1827f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "918c6cfe51d3a430ab24220d2831da9415d38b4159935f0a4544b16bf54f7eaa" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "toolbox" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "415965" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Fri, 24 Jul 2026 17:59:40 GMT + Etag: + - W/"8ddee58bb0a47628bf39be132d7e2bbb031082a04030f2bcbaffad1781fef567" + Expires: + - Fri, 24 Jul 2026 18:04:40 GMT + Source-Age: + - "79" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 93680898a477a168a58f463bf8f99eb255bedc9d + X-Frame-Options: + - deny + X-Github-Request-Id: + - FF5E:3131F3:A1690:CD5B2:6A63A308 + X-Served-By: + - cache-bfi-krnt7300091-BFI + X-Timer: + - S1784915981.604094,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 31.7017ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf91d1a%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","name":"rg-azdtest-wf91d1a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:50 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 33d81696-3ff2-4aad-baa1-577187f393ca + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175951Z:33d81696-3ff2-4aad-baa1-577187f393ca + X-Msedge-Ref: + - 'Ref A: EBEAFAB0C7A74568979E3153B057BE2E Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:59:50Z' + status: 200 OK + code: 200 + duration: 456.8085ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27func%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 493 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","managedBy":"","location":"eastus2","identity":{"principalId":"bfbebaf6-69d6-4f72-a735-7bf3f422b2d7","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "493" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 6b335790-a9a9-44ae-8f72-fc7199bac54e + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T175951Z:6b335790-a9a9-44ae-8f72-fc7199bac54e + X-Msedge-Ref: + - 'Ref A: 058874C7A4244034B75AFF114CE632CC Ref B: CO6AA3150218017 Ref C: 2026-07-24T17:59:51Z' + status: 200 OK + code: 200 + duration: 366.6617ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: -1 + transfer_encoding: + - chunked + trailer: {} + host: acr3byfkdyh5dhvo.azurecr.io + remote_addr: "" + request_uri: "" + body: access_token=SANITIZED&grant_type=access_token&service=acr3byfkdyh5dhvo.azurecr.io + form: + access_token: + - SANITIZED + grant_type: + - access_token + service: + - acr3byfkdyh5dhvo.azurecr.io + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://acr3byfkdyh5dhvo.azurecr.io:443/oauth2/exchange + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: '{"refresh_token":"SANITIZED"}' + headers: + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 17:59:54 GMT + Server: + - openresty + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + status: 200 OK + code: 200 + duration: 332.8864ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 9028 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"East US 2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"},"properties":{"name":"func-3byfkdyh5dhvo","state":"Running","hostNames":["func-3byfkdyh5dhvo.azurewebsites.net"],"webSpace":"rg-azdtest-wf91d1a-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-253.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-wf91d1a-EastUS2webspace-Linux/sites/func-3byfkdyh5dhvo","repositorySiteName":"func-3byfkdyh5dhvo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["func-3byfkdyh5dhvo.azurewebsites.net","func-3byfkdyh5dhvo.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/placeholder:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-3byfkdyh5dhvo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-3byfkdyh5dhvo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"hostNamePrivateStates":[],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-07-24T17:59:30.5733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"legacyServiceEndpointTrafficEvaluation":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/placeholder:latest","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":true,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":1,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"aiIntegration":null,"deploymentId":"func-3byfkdyh5dhvo","slotName":null,"trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","kind":"functionapp,linux,container","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.19,20.119.155.6","possibleInboundIpAddresses":"20.119.144.19,20.119.155.6","inboundIpv6Address":"2603:1030:40c:6::1e","possibleInboundIpv6Addresses":"2603:1030:40c:6::1e","ftpUsername":"func-3byfkdyh5dhvo\\$func-3byfkdyh5dhvo","ftpsHostName":"ftps://waws-prod-bn1-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.152.26.230,4.152.27.10,4.152.27.113,4.152.27.120,4.152.27.248,4.152.27.251,20.119.144.19,20.119.155.6","possibleOutboundIpAddresses":"4.152.31.222,4.152.30.82,4.152.31.99,4.152.31.191,20.96.136.50,20.96.136.71,4.152.25.111,4.152.25.181,4.152.25.214,4.152.26.13,4.152.26.78,4.152.26.114,4.152.26.230,4.152.27.10,4.152.27.113,4.152.27.120,4.152.27.248,4.152.27.251,4.152.28.235,4.152.30.29,4.152.30.74,4.152.31.11,4.152.31.92,4.152.31.182,20.96.136.113,20.96.136.152,20.96.136.176,20.96.136.200,20.96.136.227,20.96.136.237,20.119.144.19,20.119.155.6","outboundIpv6Addresses":"2603:1030:403:5::187,2603:1030:403:17::11f,2603:1030:403:12::58,2603:1030:403:17::fe,2603:1030:403:7::151,2603:1030:403:17::ff,2603:1030:40c:6::1e,2603:10e1:100:2::1477:9013,2603:1030:40c:6::26,2603:10e1:100:2::1477:9b06","possibleOutboundIpv6Addresses":"2603:1030:403:16::139,2603:1030:403:15::357,2603:1030:403:11::8a,2603:1030:403:14::137,2603:1030:403:12::8d,2603:1030:403:12::162,2603:1030:403:15::33f,2603:1030:403:3::246,2603:1030:403:17::c8,2603:1030:403:16::136,2603:1030:403:5::186,2603:1030:403:16::13d,2603:1030:403:5::187,2603:1030:403:17::11f,2603:1030:403:12::58,2603:1030:403:17::fe,2603:1030:403:7::151,2603:1030:403:17::ff,2603:1030:403:11::16f,2603:1030:403:6::1c1,2603:1030:403:5::169,2603:1030:403:14::136,2603:1030:403:3::2aa,2603:1030:403:16::138,2603:1030:403:14::13e,2603:1030:403:7::152,2603:1030:403:14::32,2603:1030:403:15::35a,2603:1030:403:5::16a,2603:1030:403:17::103,2603:1030:40c:6::1e,2603:10e1:100:2::1477:9013,2603:1030:40c:6::26,2603:10e1:100:2::1477:9b06","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"},"resourceGroup":"rg-azdtest-wf91d1a","defaultHostName":"func-3byfkdyh5dhvo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"platformVersion":"109.0.7.36","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null,"maintenanceEnabled":false},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"bfbebaf6-69d6-4f72-a735-7bf3f422b2d7"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "9028" + Content-Type: + - application/json + Date: + - Fri, 24 Jul 2026 18:00:31 GMT + Etag: + - 1DD1B962D0B28D5 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 45fff525-c043-4d59-96da-b70459da6913 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180032Z:1043c167-ea6c-46a5-970c-c1ddd0de5d17 + X-Msedge-Ref: + - 'Ref A: 4DF1238246D24A5B953AC22487261154 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:31Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 650.257ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo/slots?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 12 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "12" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:00:31 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Original-Request-Ids: + - 7c8e91a4-cf3f-4a4d-8a1f-e620264f4a5c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - ccd520f8-5bbb-4af8-a955-b1fd86f34797 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180032Z:ccd520f8-5bbb-4af8-a955-b1fd86f34797 + X-Msedge-Ref: + - 'Ref A: AF30F1B90CA445478128016D54E2841A Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:32Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 170.9831ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"properties":{"linuxFxVersion":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a:azd-deploy-1784915868"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "132" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo/config/web?api-version=2023-01-01 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4281 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","location":"East US 2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"},"properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a:azd-deploy-1784915868","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":[],"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":true,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"REDACTED","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":41727,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow all","description":"Allow all access"}],"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":false,"minTlsVersion":"1.2","minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":"1.2","ftpsState":"Disabled","preWarmedInstanceCount":1,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":1,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false,"storageType":"StorageVolume","sitePrivateLinkHostEnabled":false,"clusteringEnabled":false,"webJobsEnabled":false}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "4281" + Content-Type: + - application/json + Date: + - Fri, 24 Jul 2026 18:00:33 GMT + Etag: + - 1DD1B962D0B28D5 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Operation-Identifier: + - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=becb5bc4-2037-46ba-bd0e-9498f8dfe9f8/eastus2/28f8c2fe-3d6a-4274-ba9c-3611cf77e697 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "2999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "199" + X-Ms-Request-Id: + - b70d9bbc-cb34-41fb-ae97-7bbcfae10709 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180033Z:2e2e277c-d461-431f-a803-7bc26b40f49a + X-Msedge-Ref: + - 'Ref A: 75C852399EA849A2BEB67AFAE53CF1D9 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:32Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 1.3578871s + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 9109 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"East US 2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"},"properties":{"name":"func-3byfkdyh5dhvo","state":"Running","hostNames":["func-3byfkdyh5dhvo.azurewebsites.net"],"webSpace":"rg-azdtest-wf91d1a-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-253.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-wf91d1a-EastUS2webspace-Linux/sites/func-3byfkdyh5dhvo","repositorySiteName":"func-3byfkdyh5dhvo","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["func-3byfkdyh5dhvo.azurewebsites.net","func-3byfkdyh5dhvo.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a:azd-deploy-1784915868"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-3byfkdyh5dhvo.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-3byfkdyh5dhvo.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"hostNamePrivateStates":[],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-07-24T18:00:33.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"legacyServiceEndpointTrafficEvaluation":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"DOCKER|acr3byfkdyh5dhvo.azurecr.io/container-function/func-azdtest-wf91d1a:azd-deploy-1784915868","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":true,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":1,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"aiIntegration":null,"deploymentId":"func-3byfkdyh5dhvo","slotName":null,"trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"useQueryStringAffinity":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"clientCertExclusionEndPoints":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"66B450D1C01C0DBF95CCAFD98F73407E29EE110F23977426F6B4A678E0B25E27","kind":"functionapp,linux,container","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.19,20.119.155.6","possibleInboundIpAddresses":"20.119.144.19,20.119.155.6","inboundIpv6Address":"2603:1030:40c:6::1e","possibleInboundIpv6Addresses":"2603:1030:40c:6::1e","ftpUsername":"func-3byfkdyh5dhvo\\$func-3byfkdyh5dhvo","ftpsHostName":"ftps://waws-prod-bn1-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.152.26.230,4.152.27.10,4.152.27.113,4.152.27.120,4.152.27.248,4.152.27.251,20.119.144.19,20.119.155.6","possibleOutboundIpAddresses":"4.152.31.222,4.152.30.82,4.152.31.99,4.152.31.191,20.96.136.50,20.96.136.71,4.152.25.111,4.152.25.181,4.152.25.214,4.152.26.13,4.152.26.78,4.152.26.114,4.152.26.230,4.152.27.10,4.152.27.113,4.152.27.120,4.152.27.248,4.152.27.251,4.152.28.235,4.152.30.29,4.152.30.74,4.152.31.11,4.152.31.92,4.152.31.182,20.96.136.113,20.96.136.152,20.96.136.176,20.96.136.200,20.96.136.227,20.96.136.237,20.119.144.19,20.119.155.6","outboundIpv6Addresses":"2603:1030:403:5::187,2603:1030:403:17::11f,2603:1030:403:12::58,2603:1030:403:17::fe,2603:1030:403:7::151,2603:1030:403:17::ff,2603:1030:40c:6::1e,2603:10e1:100:2::1477:9013,2603:1030:40c:6::26,2603:10e1:100:2::1477:9b06","possibleOutboundIpv6Addresses":"2603:1030:403:16::139,2603:1030:403:15::357,2603:1030:403:11::8a,2603:1030:403:14::137,2603:1030:403:12::8d,2603:1030:403:12::162,2603:1030:403:15::33f,2603:1030:403:3::246,2603:1030:403:17::c8,2603:1030:403:16::136,2603:1030:403:5::186,2603:1030:403:16::13d,2603:1030:403:5::187,2603:1030:403:17::11f,2603:1030:403:12::58,2603:1030:403:17::fe,2603:1030:403:7::151,2603:1030:403:17::ff,2603:1030:403:11::16f,2603:1030:403:6::1c1,2603:1030:403:5::169,2603:1030:403:14::136,2603:1030:403:3::2aa,2603:1030:403:16::138,2603:1030:403:14::13e,2603:1030:403:7::152,2603:1030:403:14::32,2603:1030:403:15::35a,2603:1030:403:5::16a,2603:1030:403:17::103,2603:1030:40c:6::1e,2603:10e1:100:2::1477:9013,2603:1030:40c:6::26,2603:10e1:100:2::1477:9b06","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"},"resourceGroup":"rg-azdtest-wf91d1a","defaultHostName":"func-3byfkdyh5dhvo.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"platformVersion":"109.0.7.36","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null,"maintenanceEnabled":false},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"bfbebaf6-69d6-4f72-a735-7bf3f422b2d7"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "9109" + Content-Type: + - application/json + Date: + - Fri, 24 Jul 2026 18:00:33 GMT + Etag: + - 1DD1B96527AB240 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 9527b6b7-800c-4f2d-b381-5ca7112e41f2 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180034Z:4360bc72-b717-40d4-8f22-92997362d1c6 + X-Msedge-Ref: + - 'Ref A: C513CE80ECF540C4B9C9C677669BB6CE Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:33Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 267.2081ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armappservice/v2.3.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo/slots?api-version=2023-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 12 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "12" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:00:33 GMT + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Original-Request-Ids: + - f488a939-e827-45bc-b3d7-1e82c74e0107 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - f34283c4-bcc7-43c9-8670-dc3863dd4f6d + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180034Z:f34283c4-bcc7-43c9-8670-dc3863dd4f6d + X-Msedge-Ref: + - 'Ref A: A0AE12D37CA84D018B3AF9855172E340 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:34Z' + X-Powered-By: + - ASP.NET + status: 200 OK + code: 200 + duration: 295.7439ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf91d1a%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","name":"rg-azdtest-wf91d1a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:00:34 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cce72b7b-956d-9327-1bb8-b8f2ebf93f61 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 41e16ce2-feb4-4995-a6b4-a65faf9dfd71 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180035Z:41e16ce2-feb4-4995-a6b4-a65faf9dfd71 + X-Msedge-Ref: + - 'Ref A: 334F758EE8C74C74A996B0F6871C66F9 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:00:34Z' + status: 200 OK + code: 200 + duration: 955.7744ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: func-3byfkdyh5dhvo.azurewebsites.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - Go-http-client/1.1 + url: https://func-3byfkdyh5dhvo.azurewebsites.net:443/api/hello + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: Hello, `azd`. + headers: + Content-Type: + - text/plain;charset=UTF-8 + Date: + - Fri, 24 Jul 2026 18:01:50 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 1m15.8821178s + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://aka.ms:443/azd/extensions/registry + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 18:01:52 GMT + Expires: + - Fri, 24 Jul 2026 18:01:52 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 50.3934ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: raw.githubusercontent.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415965 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.3.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c130f6534223fa998bffc6716b3db4dde86b420053e4e41e780d4b7961e891b9" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcc6d26d044362ab23bb82c59452d9967bdf5d2dec1b67cf56a7e035e93f248f" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "673a66c3ab482e27b055534be13f3ff61970eac9cc1a559663ee5e77efc22c35" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2e41ce4464989e0c3ad401c7ce84ae0cb5e5287abe2e60d901a790fde0fb7ea3" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ddc09442c399e6597931b364a0e38f3712b5fe932b3270fc4f722b10d45df36" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7026c30919eeb5bdb6e80d6a2afb2a8614259137b9646607f58e5a231d3276f4" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e68599435a5854f7e8a96f5f93d5a602531e5416617b595f6db71c6f27ef161" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b8496560b936d3ce7ecc890cdc892ec2dabd3e17a41d3e8b81e3dc8f1e6ac79" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e87e451548036d5eea41c740d2125a174c46f3518626ca7d570c09c9aefbd8be" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f9dfd652a0d67fa525ec1772ab346c1b0f253bba8e4f3b66869f0ff5173a9622" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f408d344ce24cb010feed3c6a97dd923296a67f0af28ae01a9539aaa4a0bfa82" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6439232a8b3218ecc64abbd34ee2c76e3eab3ab8aa60f7d79aec72ad08c0c38" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "79ee739ef1e7ef1c57ca894e0970ba0c27f088d8b804d0c2fc0d47b1b014c910" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a9cc1d960260fe6f01bdcccdeed4f7f2509a84b3ae7a274a33562fbd0880f145" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2a501bd3123f5599c64853b65709161e77874b8a1c87dcced08e217474bb2383" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fc0a310676dc575de2ed0c145decf39bc60b26b49118459f530207305637ade" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "64f1c5461bc638bd0fd1092ee042dd99ca14d9fe083ac55ae642313b6e980e80" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97a3a1c2cc34877194f7d6888ca07904b5a4323542158540f21aa6c099ad990e" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.extensions", + "namespace": "x", + "displayName": "azd extensions Developer Kit", + "description": "This extension provides a set of tools for azd extension developers to test and debug their extensions.", + "versions": [ + { + "version": "0.4.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "82c417090c5db778ecc8c99a90dd55af3a2cc4418c5aa6f30aa63c2bc8f1d747" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3972b447027a4335126407e5a7dde02273ed90f8851bdd11acb0df7ea99a10ae" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2fae81971e8767f1ff70748c791e5ca1e0caa5020ec9c48d573d3bf190004bdc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf413931238d79b26bed1242e59fb80c9e922c9385696598496f63389fc9ef" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1d8efcce9b68d8a7bc09227fffa0313254d4dbf8c3f64e8085ba2a0283010279" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a2dc779583d722b338d6fa146e9d3dc6d491f9134762dc0f844d81ab06f0548f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8f9fcaa723052db4c2759e5786cd6aaef59657eee16085cb10d68d4eab34e98" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d47f6333f59e489c9f32c24f3abdb945235b8629abc6d2157e30f1b91814d9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d2f6823fdb3f2343cd5de9e0cd740af9b59faf48cfa07f9b4f8a96a0d7d51f9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10a88883a3144e2d577755972cf9c958bb7bf99946c2ef09c9fbd7f6bc522418" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "011e4433cb1e1ff15cd8b7b20e3b3db90ac86476ee1a6ee86b44a118b553a34c" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81e21c0591073af8759073cdc0aa5356350b29dfa565d4296d81770eb9250155" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29d7667e5c5fe398b2bc2d49d8cd50c4ec2d7a80af39b5dc2661e0a279096b07" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "89ba0413718ab42271d70e723ae5c568dd4641e35de91623cb43590ce44b1c08" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "633bed7f65b7c7fdf38f264f9ee17f2b5421ad086a19deffff6e91f6409b0da1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fac18d7791a94f292f959bdb5e9d871577462d25fd2a0c6934308b812e1d69df" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b969de90f1639b05bb5b9bd379f50fac2f731ad48fc773a6a8d2e478efc49495" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa1e9644a99e575eeb7925f6db38c942d5116ead358daf52afaab20529dd7b33" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd943d1b6df6b1a7b985c1496fa9966907838300799697590f4c375773e655e8" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.12.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33e5f28ccccbbe199e9b02cac8da43853b50fd15d7d7c5cbc4b4888028b84ae7" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2397247ff6680bc9dce38f6d11a40096059cbce27f03fc0e27dad95fa05d0ebc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb8ca717eb58064064ab3ae6dac01c62a330f231054a953fb558fe787f172852" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "59d5b1a75205300e188e7b14d45dfbc0fda24e0dbe3110a57dea58fa937f9857" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "523b5677e6ed818a749e0a10e4d80d18586e83b299ebedc24b7bf835227ce2ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3d1ddcbf7afbb39827a75359e5cb02ef309b80d26fc83dc82c2032eaebf2e608" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.coding-agent", + "namespace": "coding-agent", + "displayName": "Coding agent configuration extension", + "description": "This extension configures GitHub Copilot Coding Agent access to Azure", + "versions": [ + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e086cdd196108c7b7e6cb2a9e5852009caf3d0128b1fc0bd537764405fb81cb6" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfbc5e06b0f1ae0e8e4a086a1e42e5d7e973a6e818b9b20efb925ac780f82db" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b546f5fb825cb4ad758c535efb2c6414d5b163335974d0f2dd5c959eaee7fbf" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b81c9014dccc2a4d79f31d4d76992e952b5caf96bddd1881b388abb93d8ab88" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bca57dc67b11aaea160696003ef0fa5734ccb57cbbef20cfe6c469360edfdf0" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d2854d9c9bdba79b10a728d96a77d7c9f64f457927c0564292b9b3a40e9a3e6a" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.agents", + "namespace": "ai.agent", + "displayName": "Foundry agents (Beta)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Beta)", + "versions": [ + { + "version": "0.0.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "592dbeca411725b0ee7708a54469dfa05c88451793514731ce083d5a1c20bec5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12293a86ee951d99bc0903e0436573f5da853eeb0f21d894f0fb5c5de670cfdb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81449a1df145676cb20a002a3496177c823873deae31d4ca51edd9ff691d08b6" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "790de2fa0cd241e2daeb487483cbe5c9b1d2f5bb4a904daa753b5a03ac20b632" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d7943130b400a89eac4f1622d34fd1fff10821a14507ea8a0f3a37aaf15697e2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20352ae5d05604ad4ebac5c42b9d4f049afc5f921759a4534967ba672c78448e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06e7865cfed0f7e4b4dad9bde06f4763210b9afb67012676455b50b0c9629432" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.3-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.4-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.5-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.6-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.8-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.9-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.10-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c64121ba9dc31fbfb34d32d9244a21aa409dabf9e06ace243fd53a3baef7afea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90f2a83c05f6821dad45f5245e34c80bc0b07b7a2d3a6d203d68bd768bd12edf" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d386525c926eca66543f3b01446b41b0eaa291ba88c390140f6dcc0d1dbf3954" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "20c97b2b8a8cbc7b3815ebd6b7e6e1cc6b5aaa280187a486c55d651360e3f505" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "abe6ef169a9c302b4e3095840f5bf7f26070c10c81fdeaaa498e2cd82d69766d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41adb6c666d0f88fcd49a45999658c3e6e6e2cd39fe256955362ca86dce5cd78" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.11-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f36b1754b2b810b9bcbf3f7a1b960bd91f97b66156ff686b0d4c2a7ba3ffbfb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cae9de7cbde3ada737f893f357d8b4c0199fc7ac4c6132b426326cfff74eda31" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e5da23e45728034744d1b8b7f06b84e56cb9df0ddc865df9d6b6d249b3e8d0d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e19b59b6f76cb970de5c3bcd42c158d739d691e87cbd46a5e4f545501173abd" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a572a9e3d430898482f80054938aa6709ebb65a8a6df88e727aacaf45e92a872" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "046e9679b9dfa58f5d1c5d4344c7dcb1ecbc72ec2f3df74282709628e501429f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.12-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "86302e1fc56240bc2b78c2747ac53c04af24dc08282c9f287ab64a217b720cb5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "55bfb37e0f0f5400c51f3767ab90a45198f80acc8610f2d2118d7ed5618136f5" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46b60240d9c1972749efb05af3e9a44f3749a921aa79a431e957ba0b666f6402" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ee8f28c2d169854c7faa3c5c95592839c92e674a2edac4e800e0181477e6058" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f26f81c762d32cffda75e9665645ed11ee528eab029e2f6a1334f42f2ca464d8" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f1bf020b2aca5d0d94726705a682c67b8a46e007da6c7b09ca45635f1809929d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.13-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e78bbec69c38c86f9690f98f90d461c6e816c5d2059ab9cf1dd611868c3e44ec" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c4c69e379b3272ede0d892f75efcf08f128ab93e42aac6278e7c9d548f5e841" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b20ac48c1d59991f2fd2eb47c789d95ab441c70ba5abb60a567efdf5c30bb8ea" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3159eb218dcc6b11fa71f00f8debe558bcd481bef7f0c2b0945b1a19eaf38790" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b5453d9af26831aeec9d58eccc96219361fc49794e7eabdf8979b9fb806a675" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3494f5f1205ec5d78f3f725b93182e217f7e9b7e93f53de63bf356c72656fd69" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.14-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c77b6f268659c93f91865a977970a941e36b00f2af2004a60556fd6692d8a28" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dda0c803d1f116325c560e2673d3e803999a84145bc873e2d68a4dfb0b5fca5e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9006a086c3b5d4d1a7819ca50c749075e3cb2bf0520e43c5027ceb1ff072c9f8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d426f8658705012f6672d2c718f392babf0a9e448bdf6adea1736c944406070" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8c7f6d83d55ca7f16f7de2ee41421a90cdc35aea617112fe4d0f169c57d2b90d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4e47b751bccea4518b803a4980bc53453925bc88c75f9c7fd5417116bb468b98" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.15-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf244978094a6a59b33f090af06dd62f71b19fd9b6014a9c02639856cfca87" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe7c8d0d67b94461cedbe12e4ace77ad96bde948ebd1d530aa20f41e219f8d7d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c217ab5583e34e7ff884248b62d3af94a77dc0b3453538b48e559428c5119a5b" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fd4d7e1f0aba957065de343da7cf06cfbed993abfe5da7a0615e913197d8876" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bad25e242dd148c12b5616ecc755f858f65161d78bd0ada2afd7c880cae47de3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9cc2d182f722b19ad22a6f28257b9d06e42c188cd6badd38264be3c410747f53" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.16-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f724bed29577250f7ff443913682247b1833cd05c843f19f942c48e092af588e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c88c0e76bfdfca7266d24d1372f28a047794f068e01d4279ecc993126d28ceb2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5943072ca1a8baee772ce9390ff99abf363258950454149e9e0c117453a5ce2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be8a8652381f658587e99f99b85d1272be02ea563ccdcb43ae77a69de6161166" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b6b033133414b32e74c9a6c01506cb343c02b56f136f68450349e8139b26cc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42f1065dfa623259614078add0cb6a5c1fd7689ffd16e2b54be68ac20f5792b9" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.17-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cafe851463b9329f4284ea41ff161b8deb6e7bc79e2519cda9c83a4413deff0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cd4756b84f0ee721089ea3d3e1e0b47b23d8cf152c1861bd13be29e24c98027f" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4c7ea2edbd8c273ef387d9866c997be079f306ac19534eb8739a0e93b2f3f614" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b1e95a55d31b08d7153b14226d21ad98b138ebf438b9cb4b617ac6e5092389c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbcaaa3b037f5c9d2c9a92e6d40165520ad5fa518689b000df44c279d73a14eb" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2b3ae89d3cd4476f334ce75db4a12329c0f424ecd499941ba298707892fa5146" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.18-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0afd0d07300bff164c2cb46a7b08646ec61501e5dc4bbdc7b5e29246a3875ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9579621bfbd39baacc8f95cfecc2443e4e47c6eff7eeaaadbbb4de5815a250ed" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "25a7d89e61eda8f08ae08f467b198dccc17e5c5b5384e6c3a92113e653fb1584" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90d2b4611311c20179168ddeac0d70083c7106cc0ae0eb692a37dbfc36f922f0" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9fc6877f6e32fcac6e58e9988491eb8ea059ccf25c68dc5f8b213a4d149f7c7" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a860745c473a8b98b57f05cb051fed3fdcd6229065a6b914240d7ffbaa448b44" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.19-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "efebbb67a0437da9ad67191500a6caa0fb28d3f84093bac39d2356a2412dd3ce" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2dda1a039c61dbd45c73251eed5c0b90aafe4345086e0d31cb2f152d80e94e4a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de9491add21ea593e8b2714b7b23bf3eb249bd0088e0323b1fb787c26d8db952" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4227ed50d60ee71978447e6d5218acd06c9a4e97b45584e1f76a7159df1752f8" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "816416f8b5e7a4cf9d5235aca1f140f170caec9cdcb26b0d3854340bcd3b7edd" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c34d427b278f3cc33adfc8592acd5fb638dcead55fdb80c24a8ae220d5d03b1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.20-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7ebdead1c9f6a5e4ed4ecb619654d7cd2167043207d545f2340285b5bf73896e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27deab2e9eeb91d34e3c7a6767bdaa62b5ee69ed766f1029dbb4d51b025cd2db" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5888303efb6e2d67e41b5d78d592b4a8d3097077e6f20267a87d0ea88bd0a438" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "973c938ed1945e745337495978262b13f5fb8aa64718f75f7411669aba713db5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d41544242411dd4b9f2bfca45e66717740ca5ec324de22e45ff1551d71ee74b5" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5f18fae3cc684582b2cd87262c51fad69db16d6514d792f117b2c0f0d831d701" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.21-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "910138effb7da8dddcc623e84679fafb6b2a4b845cd6246854a16a4233d902ea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "587703a9449d81bbd0604b2e92a54a84622bc93c4128cd67a5153317794b1511" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cabdbaeaca0b91180191d1da5ff3840031ce79e4117584ffbe6c5cf991fc21a0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b50bd5ff9d2c4d0d8620b4498ef3debb822007809bd8d583abd7f2db25a74d4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a3569dd67cc01847ce2cfe927431048ff167f7768fd08f53104ed874c8ea9ce3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08b037174eecb07791aabba6ab262eec8efecd313ef0900ff8d6c768ebe99a79" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.22-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b99ea77776b21ec56bf7b3caef1e667873de24b9f63480acb531d3b9b8c7ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3c36c0960222417b104ea40824d08442886ed522a949825365a45d627d8bc8c4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f8b671f04c394d8fd33f50c705e51d1768bd827b0f534ec957277bf1563701a3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29b3d8d9216c7e6111b8dacca4f9fc3f3471e9e68ab2eda98d309556fe273199" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94b1ae318bfd8043d3cff63d72d412389585912b38ee2dbca1fe56e4bbfdf009" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ecda818d9aed29aa83cd5682998aefd6a3b4edae4e4393d4e67e01da2775ef6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.23-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d4f13a93cf123378a4bce6a5e7c9ae354c5beebbb75cda6df15ddd72e2d05e53" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cc821aaf3d9342c2df7ab18a5298f4bed4eff28c86e07d27b2a549287519d189" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a30f75c10eecc07aa061faff750e86bcc972a76294cfe3ac8dcb9b6f88c1c8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c537c9880c2438528d3f3c8bc10e413f9b3805bb853adf446474d1de73e107a1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9a42feb9469927ffbea0815babdb4ca1df167e888e35f481bae4dc4c1f043eef" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33e9f8e38dedac75542e32da4fdf282804e014aff5cd08c457f8240f27d75b30" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.24-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "27c9e937df216c570d4ec5292532f58663cf95ef986bdcc844998efa1bb73082" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5c64a7b0f14dca56649d5444bbb8e7a54d4c0c3a9bdb6c79f9baa9428a2160c7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc786a142560956b5efcdc0a75749ed9ba538c6bb29deb910eedbbe8901d6d98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e452a2f2147dc22408a5d0795061666ceef9ffe4927ce835700596283668931a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75957254fd7470bd66ced0f981961aedac34be48ddd13f92cb4bc4bb53294d5b" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfad02e4cd60529f4f233e2b27ead7227bcc15595c2c2e4981e117fba0d81f7f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.25-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "990bb47e30bb3b8fdbaa123e41b0eb80029c4fee22bafafe7e131c0ae658fe32" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f69309b7f570559db88ff7214334a4fca4dafdbd54eaa35ae428766dbde6576d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0431d1b90c9308f9e5e159a042b358ff2ec9f4565cbbac667856479967db729c" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "63f9f67c7be549f05fe2c3720eb09c5f80436947026a62e1a5c4bdd40586c167" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa44b7325dca43c59576ed5abf131f6f858ed1668c06b308b2f2b2d4d9256217" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce6f3a3a2f6f48d1db333ba607c726032142bdf095d942d2e4ae5044c6ae5622" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.26-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a3cb2d1b71900d20b407f4b5348eca346b7ce0dd74c9a95cc17543f678e94a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8f0a98e8f709283137c2588bf6a713c89da9390a4255b8372939fa4dc3de0d3" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33352dbd47f53e660f996c15bbc7f650865de06c735c8891d0455bf592d3b0b1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d97a577b96bff189e60438424139d9ad112546544f2e64788e5cde2ed51bf83f" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b8c966b418d661678ebcafeba5bca9b9657d092a5a2a1cece289906ae6b07c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "accff36ae2c605244ceb68601630397d58acdee9901f0792b20deb6fedbd31c1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.27-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0e5ec072793d049af3954bdbf6f13868a7ff4573a64d7d0bcf8d213d3b77a0b" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91b0ef8a0138608a67cfabc8c757908c192b42e65c7c06278ce5373f2bed1b08" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e758b845cf21b801d97475a5b36d69bbfb8364a3222733d490b64f13305b9aa9" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "018095dc547b69a384e20ef2d0680a53046cd2d33a43cfce6b26d835df2cd178" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7d27ce8a58a810a2f755637837fcceb8ccdb8e78f1855df389eeb8256357f897" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "00d72d45ae175b5db9ddb28b064020f27fec3076f9edfae6afdeba54aac55560" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.28-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de8a77862a398f0ff9c4f130a90d7bb443812751b02a3c9c5fa0873fbc02d310" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "05e2521fb6e5319be6355a7e363d90a314a56f1c6d425270da33e9ef7555c3e8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0037a09d6a2fc23e4cfe42c0b33f3bbff803caf7a10207e24782cf27018f0b77" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06d246fc1c7368352bd8a50fb531dbefe97bd5a6fc5fa5953a0ae39ed3dff48a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1f6f0707afecc7c984b373d92b78416b0b9b5f019970d63007120ed48c4e7520" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91d57ef3b458a66acada5edd666a4075ecf52551516681e0df1e79a016895dc6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.29-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d512a4a2ac982f65d23ed5e6ce9de355d49286f30191794b879b8afa4109a264" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8e9e38efa6180fd4677c44c9381ed031ceb966d9b9a9fe3e1a86eede73f8178" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab960b783244c1e19e8be378b8b3962f8983b4464e2bf78875b136295c91a2d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7b9202e93753c37270ae00985184d4752d22ba6c61d0e871fa6f549c30b62919" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3b0295ee0823bf60e8bb49a68901d3e0d830d8a458da99647ab6dd4fc3aa5a8f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c274b0fdfc311bdf4dd52a6a5403692d252e214a1cb27c91573223139da428a" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.30-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09993c41d96d51cdc656bbd4f996124280d52e1a0ed2c68bac1cecb23d1da108" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c423b779ee5a7c9e047856d7346d46aadc281ced036dd804a24c4f6f39acedb" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b3fe863959c4b075092d824c1c3003be78a2c6fb0949d12cb03a85fb395e3a14" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5628f47608b8ac16030a9ec5f30c9979c2496cd1a72fe77b8db295a4ada58205" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b2a57f8d305cc42d511c35b9890d7fd20cb46196a677d1fbcc4f8164c961ad85" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abe185385d2607fefd1dc126b72fd1d3f19cc1146bf7ad4d4715858cc70f7cbd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.31-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab396ab8dd3b627e0467e35535f6cb6bb29efb475986f7218cf2322946e4e33a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "919f18a74e4fa85d8b3db74e34e1d41af10b1e9a78fae171be7e42085f8bfef9" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dbcf13152499e43dee123bf8d3a25aba16f2f4cf287975187b9f79b62495cb53" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a84f09164cf0260727e82e1e43ace5aef7a8d3380e0602221d05ece9230fd87" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3a9d3f0358852767babe84ce16fb01e52427458776751e11d2024fd77694a0a" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1ff890de9c6507ff8a2e104e697545e1928eb4f1557a35e06f7c2168478507c3" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.32-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3581ff17669463882b1dc477d2986b6e79c5769df9d0a6e566cd073da6d7f18a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a524908af85bfbbaf822eb0057ea5afa25ac3de3d5e5dc06e3d5a9b56d65957" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "22c694cd87e5c6520fbdc833bc6c14c3d280fb8d554a30c09bf5792df4d8dec3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02033552191d66067ea1af868c1fcfaefd97aeffbc82657f4844e6445a4ec31a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b54ae1214fc50b38a9275e661fe62c756cba99acf2caced9b11defda3e28871" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "62f52c8b70c789b4fa9c0b966be740950dc6df235a944dc052c791c6f611790b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.33-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a080e5dfbf57a9f85b70bd68fb5b1e442cd9928c4f451e69e338b24286eb441" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "53f332fa798dba743ad30e6967402f7eaa2c521f21c4d7ce76f2f1c55ff59628" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "29e47f46aec03efccb0581e3f6f46545c45b074907c77400b809f379a629e5fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38f2e6d72165b8e47b54ebd7e2c9a7d34c30ccb428dd98b4bb7538475794533b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1693f492941c77081b1eb0616fe61c5ce4a25567bc57b72d5963fab7f61f809" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e473201c8c7208f0f41088df4a136e40afbd1fba9f94f880cfb6c1f8b672c469" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.34-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d5ef6fc956a6b843d8653405ba040a89e6fd49232f84946cbea47dbecc2f430" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c530b651a21550a050b899495ab24320a573c79f66b2f0dcd0352509d7f260d4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4e0d9694847b4af6cda6ac48675ff99722887d9fed8907af4f5e83c170f0cc6" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b2d28f0efb9f946059e96b325aa1981285cf2b108e11f475b34d38d1e41585c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42dbcdbd8e8ceaeb79d0f5eb4367401bd89022594af9bd0acd6dea80e4833c22" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0f962b13b5f3794f534ee5f28b7fb912b5693e63a70a552764a0e8dbf5d0f176" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.35-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63fc59f473a9b09cdbc3d6d141a93c06974bb5f5f17849bead025a6f495fb3" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "46dd13c9d28b77b7acf997845316b712e4676da5c40c7b58dbf8b586bf3d9be0" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "44e30aae1e93ee4d255ce66bafc59ad54f11f263f61b6738b3b8253b4d668aec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af0f9d751bf417c5f1da9cbe91aed19b5d367803c736ec6bb2c3c156c0ee1631" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2c332b02783c831f088fa0dc7845479968681c314735075b8e3eadd064c024a2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "332b41979a2257548f9dcc9289470928a5c29f6dee3be484487222f0cbe3d1e4" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.36-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13fbc474e4a13ef3f3ee4ec73dcf8b62ca9a90d5639d0bbd561aba4198418686" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf1e5dc9fa0657985c8cf78c754936279bc64be0827aceaaf3764f3eff955964" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5e7e40ac27507737aa769c96ec81690a45d30312c41e57655d52a87a83b22a8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfffce78ebb65cf2dbbac9994f24a871995580d74128bc629f92c69a669d9fb5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c09b7060caa713e153bb377ef1670f4fcf1febaaeb18fa9a1b843eb55923d899" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e747c3fe88345cbbc30b5a670049171d6ad7662a554652bcbd2ae8e7fe68d35b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.37-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "727c0bc9e580a336344f5780dcc99aac209f99b0ff957fd0727e75738261a122" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c99c8f39e4184b4aeac52d4ae842c63cebfd1cad406fe0bf9c13fbf6dc4358e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7230d3c0d6d74804deec9a643ad54cc1bb06343aa63d467e1072d0ea6e0c7a98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6ad328be144a82069f3bddff7138201f3911846abd869f1cf33a27d205a3f08" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0e110c6966db94516a9f5c0549de6378f8534aabf5bd649eee5d217a5747f21" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2fd1dc5a435d683b92c2fdde6461264f8af66dec7b6e4abd932e0815f13e6ac" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.38-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e47757301e5593d726c82c99ab9a6ab257bdbb5522f2ca6394ecc9a254029e01" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "952a55e94d5f618bc2f220c014294a3cb80e7845972c03c83d88c6c53b7bbc5c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6eacad9938e63d47e451895c9100b0a27669a12791478c5cacf95edd4ae1b200" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "261d6da1779a74f7d87c6bb03c23e1259062b86e27a944a2100ec7ec90cd6ec5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "845ec0d762303e2f8e42a6bc0fcfaa7a2472ec4174ad3b7d3d0a908b9ff9a0c1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d4e955655b4ba7bbc2861c9fc92afb51950a4bc60cc0645864cdfc9a902365ea" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.39-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f008d22a441d3109344d1de47504589a914dcb4843815d7ab1fa439f11a2220e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "65a54011cf84d3f4584e7a88731debf5910208ece0bc084b38b4ab3300fb4e1c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3fa350e2860f9c58bbb7f204cc094b9437e04e19acb51fd9266680494b35fc7e" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "876fdc2551c88de050000550577c8d2a07b994cd791c2916928809bf69a1cdc1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5862e467f6bed6f51cfd8ef8ebb0b249da0fa77d6adf7e9327935099066c577" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8cf4f4009336b82e432c9fc0d7ddbc21631939967a08eedd69b997f1def7d7de" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.40-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab6caea8cd32f65c99d4b552210cf97b022c8cc9686e5569aa4963758f144f86" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf13056b2c912878ed117cc7553914e16d34b29a4ef15b70dd4e6ef670c40543" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0435921a3bfd30e4e9291d145b26f9b6e077a58ef808cc826365f02c7ee492e1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50ae990e010c2766948bfa24096e03677dc06ff28e9483f2a7cc07cc9366331b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b9fd9c5b73878caa73c47220f06cde0888e0722a7da8ccd1ee59465e52f41e9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c413a07c05ac31129cafe32faae0b9c252dc639d0122a6186e420369eaad6e6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.41-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0678e3b75a072b024bc1e50647428931b2737b3104613f152c2dc7ce2f5e289" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5da236120d2f9ed8f8ccbcebec580a2aee212dd351d5a224d8067643b2abb98b" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e1e9babc2319d4f8e72453996caf486e3bdc46d13b6719e45b4bbd0e5942cc8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a690ab21e3f888e0e7eaa19911949952661d673571dca54db45d6f43470e036" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "709d63b47982687ce23b3868db58950f46bcde0520dae87fc1658a48c3bbdc99" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89690db25edda9825785752ad1740d8069148bc8e0264f5b482d86905eb63a01" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57862cea72229938e7bc22c6b9000d497732919386786e3a54c5702c51ab7443" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4af8331d5e9824efbbad0dcb8c55f7098efe1a8d6b26356dc6cb917df2d0222c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "624b22f27b49136965ffc19ee00229dfba819177dd0987afadabc747e0ef0eaa" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bc8c7ffe937751b9f602ca85a49f1be2cae4afeea9f7f3f73f77fc19d6f998e" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c36bee112dd3af5b378c6111b979509c7a23c58ad89657a9adca11c193871f2f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ac34cba2e3e55f42fb5d530e3debc26fb8a152a783852a91899c7e14f84667b5" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6fa75b4cdb2c47d055ab2e82cc1147ea28c294367c40b7925fa47c8cc8ef2dc0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da154c09f367500da02d0e4e25e028ce83694c53f0ca75b6c29ab07ad079de3c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "948ffbcc4f74edc24a47fafc5af382d5934595f54afd20f6dcde00062cb35517" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a45b6fec76d3b3713215e26d00dd37e9c2017b54ec0518156a842cccd5861323" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3eb977ff7a2031024dab366e144594398246e126c9a65526aa7ba3529c8944f1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e63be3171eb638becf9de012e18df91c43737f851100021fe86c1cf98a62558" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa46efea07f5ac886d78804cc0c7bb8d9e6393938a153054d4044dd04b5c4f92" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9c804454a903d7ea6bd119b668d8a28334acdb147247ade59924856922b01e7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "550273bc3ccafa5d8b2df0bcc637d785f7ebb2febe5ea84c89ed0c4822e745fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "371e605d6c65d5464fd3ac4a780f64cb095aaeb9e9177d084358501f21bb72ec" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c5da3ae9b7dc94e170a60ad23977977351aada59c40c08f3614a0b5dd058be3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6fec88c43a72df9ff0a813fb10564daaddefc0372cd7092e859a3f3ac8b896c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.5", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4e11128596cef681bd84bfe264ddc9f83ce4eb8a60eb195bda83e8f0c4261959" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17897ef3d792a4fb07364b14185519bfdc880534c4b1fd040aabe4df23fc3f96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9177556979825e5b635f67bf5d342faa425dd2b37b0b775fb3490e92e8000783" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b41aca5238ed0c6eecab98a713390a5da18635497547402f1027a482145acd69" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ec250bc7acdf12cf26392b5377a01b537fcdbd18749d075f7add3892f7b3ba9c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "10131c2fd8699d36b73148966adc2cd81bfc852f2b9835a9471fb27f463d2220" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.6", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4556e676b20f374560df2a169ea97f2eb97dca0428e69cdf6d5ca3ef256c5098" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfd7ed78cf07837a393979cd110672465f97b3fa03729496fc321fdae39178a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5592cf6d958ecc65dd6004c5a563927184da809a5fc490b9b339b08060493a38" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f74cf6704a326c0a1e93e8572e3870a87f147281bf4dd6f9fdc10efa423efd3" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1445e51499d0e7511d945c2dc26a6614f0f2b621a7ce8dbf2c0ea2faf31004fc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd7f8ebd88e1af74db3b68f4fe78e91a07edb5865ee05594866086feaa09626b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.7", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c74f67391dfd3177a7faea0bba535c96f2a241cbe1900ab988263e54b042cf" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "86054e5bc2b81a15122b4ea9372bb99b006676a75b1245d122d960e6b48d0810" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94426cc5667d12f24dfb5a4c26635f7f0bd16ca8a74a4b5b17c3ad0f6b5870d0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ffb21d7ae525174425c5d9bfc0f0ac06137d82740b2a0e89099e84c31da5ad" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "219cad26c2629c4b3411da7d9bfd8d9b17ba147c2fa6d3a44e56265bb6036abc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8651044a1c03e34baa3fdb9daf5c957d5ddbe86e50ca08ce32cd4b230ad4416c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + } + ] + } + ] + }, + { + "id": "microsoft.azd.concurx", + "namespace": "concurx", + "displayName": "Concurx", + "description": "Concurrent execution for azd deployment", + "versions": [ + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "048d8951105fb1620b4de27c66dd825d27eb43403bab6a3bff8f9824035a7adb" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858ebcaff372a78d85f3a192b67173d3843bec34d68cfc67e79e81417908f74e" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.finetune", + "namespace": "ai.finetuning", + "displayName": "Foundry Fine Tuning (Preview)", + "description": "Extension for Foundry Fine Tuning. (Preview)", + "versions": [ + { + "version": "0.0.8-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.9-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.10-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.11-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.12-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.14-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.16-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.17-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9337e7097479e80d563df018fc8099003d5500d7304c0d7eae238266870a9996" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79be23975c148b1cf7918316fd02da63ec87b925485c25189b434be7df36c4bc" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "330cfd1aa5af8c73d3fdaa86d36d4f0f2c7d072cab8136916a8360f0bcf8d197" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f40fe397120d965de80cbf3278fb7cce74b816f174e2fc77ea50de97f986d229" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12434209e2009ef68d8974eaf1a57926204c084057a0dd418d213cc3c32c73a0" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fa51bc324fda2672bf863b8d0adb427d734fe266d842b4ba8365c1fa0daf5143" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.models", + "namespace": "ai.models", + "displayName": "Foundry Custom Models (Preview)", + "description": "Extension for managing custom models in Azure AI Foundry. (Preview)", + "versions": [ + { + "version": "0.0.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8880a66bfa3a1f4e2bacecb0250c5e1f9123efbe1ee3dff9d0fbdd5b936b789b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6727395151f92024a04fcc6014670825c2acd1f71770206f85538d5d3f2dfc8c" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "584a0182197f8da11500f554b6ff2cd6b7c1fc06871832cdcf6465e7d8a3cf9c" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346bd40ed1a12273adece0533ba7ccd847e3849ce24130124b644e85b5835c42" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7f2425f5ebe080df17b28d01b77d14805ab72ef1250365086ce464c6d5749bce" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6356178c246cc7db2d9b26ffacb60614581bb2657f61c57d56406bf4999a15e8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bd712e6c072123ea2232033e79157f70b01449d9dc32c02eae021ead427b794" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f30e0ae33541d857d799b089f9e2a9d86f97ff729fb14d207deb4e468d327af" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0a64a188ade94a54cbcaa9b785c769076758fee596d44f13428f0955f9756a0" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6e39b71a30715c498a0747ca9fd63f37adfc9bfcb4177d974a160824c989ab" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "392c6b8c2d5d11c3a69d66218f1553010d7fd9334a7324791339cdd7c77a4f5f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f6b74e4eef1fd12d3af0064c9696c4c02f2970477d213ec51c72f7361e2cd24" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.3-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2f41da14b974822f8d75aab595ee99577923817b679be587b5b82de238173bb" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a155a25bd071319312ab21aec60ee4bd74e265131355f50aede525212a95876" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "daeab7a467679f96a2d1cee756ad80d4f311a331318919e7b6e7058924347db7" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8517e796c4bdaa0ea264dda2a47369fca2155a45e7cc38745e723e5a4bd5cbcf" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "597a43f4a1dcb0fc8ea4136736d872f0eb9da33a1abec8eb2c9928941c0c0a50" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2f3af40fd4d877b835252cea9004ecbea6df37ded619ac88179ac731e4301763" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.4-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4ff833b38bd4f1614b2d1b649c03c3db27f31558aeb006bebf4712b6ebfe37b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6901bc3563843ba475feb46897e9fcf7a75f84a2cda2e3ce468ad28d2a527bae" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "140975c5153696f820bc36649755922c7893d49c230bbbe2a23eb3372a4043ab" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1476d0b061027f708cf00113ca503cebbdf850c268b7376cfd2936d1bd233a28" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e95ec6caf91c64b7eb69a809e0d78fe46ea797b6994ca34f4ef78da10ababe4" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a778236b3412163d73574d298d345bd27819a3b3e3985503a7ec4097a135ef97" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.6-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d4cfd3380b1e6ad851bc5c45a522121c73ed3d72151bc6d68be0558780a82e" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "647a2801ade0fdeba43d9af301eb98b093bd146e98689356f745e10cf73e5c47" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b9f92d4c8e8275c099fd36909e2817595c403b0a001ec22803e56d9680d04bc4" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97f5c17f52a6a10d160d4b5a180186974d17e4a63650ecedc51a118396902708" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed52b1683bd7550712d70d9b14a5b08c2fff65fabc3548a7c155ebd9a1b0ae0f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "215b9e07a14aad9b72d56ad7c4b7b00dbf383d78b5bd1411fb98ddd0d6923cc8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78da390157ed64364a87e56fdceac5b61cb8b2f80c4d0ed832eaa657fa238f83" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a73ea7b51a86234b94c4a4c8526c9c14b4c5c48fea1d4ac3381b0d79a4e094a" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4aeb904395436a77d2decf0abd71484bdf93a5be93210bd47c17b8cf8ce2233" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19e6320e04e8e9e8ad59a339ae765aa2d9ce9b7740d0cfae0c36e95043c78350" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf529aa5eab93978d7ed9e489c75e767a3714a7107b9d12ad18adb10f8817ec2" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b9af9e7ab48030f82c7117bf3fd8367715042806ceeff7538aa6cbb5efa24db" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.appservice", + "namespace": "appservice", + "displayName": "Azure App Service", + "description": "Extension for managing Azure App Service resources.", + "versions": [ + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "556e61f1cccb7fe30018c0a8e4bea6a5c2dfeacae280cace3884df14ae5b9757" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "702c687a99fb5465a0ccce2ca5f0827e0da2d8e7a39ff86f1a0361296bb80a47" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2fb4efb9e2dfdbfa9ad1d54483213d38dec19361343eeb75615353a7d93a3448" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69204c40496bff0d6677ab8eb811d20173806a588b8f89572ab38157328c812a" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2306b741af14700cd65cb6efe16adac4050c7c84413c7dd74376c40e952dc1ee" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fc08097662690218d2ab4a42d2bb634b4ec05722fdfaf9f97b30b5b570f5a790" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5abda3ef17a4fbcd058e46f5ffc6ab602bf9570cd0a572a53d51754f7a29cdc9" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "db9a0dcd0805d30d0338a259335db0b98d3b8ebb7eb67bae214e8f3b83536340" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a10b103030b3124e4326f31894ed5872bfca4f95b83a39cd213e019a49d8d8" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0dcae29dccc5d8fee4c33656ee7959733b5c6b35e6d4514699452b4757423ac" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "aeb86c156e482a823d16f347a91b6263b61b74a57720cff79329a76ce044ea86" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f55c50e17075a1326aa077a37aecd0aa03413239ce277572ebc55d440ed4fa1" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.inspector", + "namespace": "ai.inspector", + "displayName": "Foundry Agent Inspector (Beta)", + "description": "Browser-based inspector UI for locally running Foundry agents. (Beta)", + "versions": [ + { + "version": "0.0.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c388f95d8822ecc5f51ddd554f06b846ea9ec7a70d4ab00dd6ac7f1876cddc25" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1c51712823a4bd31c735e39435f3c82fede78593843caa3267d23035f0f7020f" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8955ab5e9fa606f398f0fdc01b0e07974d889711c68d0e4a059f31ba67fd5693" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7aec619864df86971da1479be12c29acbe877f2551e7c4b2c6d74b0dc5cf0431" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "126fe267c3b4845a05344a873c17ad7e5689e18478d05716d26ecc165d257829" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b97e3579ef50cb2458a10add8a635e13f4679fcdfdd39834b3c3dc16e0bc31f" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3a3f6550bdfeea2e83c69a65ee899c04970b5810ea2ca605f7b3b530cb6a6841" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cca17cdbfc807259242ea390eb7f9606a907c84adbfc59c83e818cafa13b9e62" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f64c28f6e97de7ef1743d51f3b2f1dca4537d4fdcd97f5668ac979928eb82600" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9e8b2307f40821dde5e294ec010c2af141dcc67bf4e1ec67f2e72775ad78b6d" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "096320484ffc7ea089f0153ddc43c9d1b42ef8d6d603f6afe004689d5826ebed" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0733c82c6839df55a8f8738ec57675426bf48ff37c311c6321de3139ee5c8dc" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00349abfafd970c42048103876cd0d9beee9b65785171a276fc9739bb2db585f" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "44bd6c40686afbe7cd528ec33367fb59a880e890e978b82417ba3b78eb6f1a9d" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d03a8047b4ba40b77e20625ec9b5f5ab0f45541b43990a2c46a3f03e5923add1" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "449190739a5215da09496d1994441407a44816efc7631ab027091ad4126effaa" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b6fd1f8fcd08f4c1d06a2d5b735a30e84494211725e022d18a6a7d989a73629" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4572fdb982f7d68d8cb61bf3473c7e804a0b9a204d9470593e7dd10a6931b22c" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.foundry", + "displayName": "Microsoft Foundry (Beta)", + "description": "A meta-package, bundling together all of the Microsoft Foundry AZD extensions for easy install. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.25.2", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.connections", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + }, + { + "id": "azure.ai.projects", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.routines", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.skills", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.toolboxes", + "version": "~0.1.0-preview" + } + ] + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.1", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.7" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + } + ], + "tags": [ + "ai", + "foundry" + ] + }, + { + "id": "azure.ai.connections", + "namespace": "ai.connection", + "displayName": "Foundry Connections (Beta)", + "description": "Manage Microsoft Foundry Connections from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bbb15af6f33cfb27615f278dafd8b1a9f4892b4a5b350ebb4eba8ec91b9de1f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f73a211f7cfd0801e6b4e16f13d89ec48a141fd5f07c8bb9a7511565eda6479" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6aab4b4c60bc8fc6150e7beb2ca6e13e3fd977e57f2bd7afbb756136844bea" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d74941d383957ba8c37cc340e0a0fc10e8e6dfb2bbcd0d47916a5a54b75491fe" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5b929c90d8d47f9bdf9c0d6cdac0772fe6a94930ae5940ae5982687c30b03065" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b19ed9f9040f34914bbb3a8ed1e472a5ad4663381d4b4a40f81112e881cd334" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0976a78739040cd6c14f3d7564398ad31611ec6ad77a169853c19abb7a66bf37" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f92de7cf1472dc6a546b6bf59ce42b8c4e62fe553cd304810f88f6aeb751097b" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "58b92265a2d19783901bd5c1eae7f65c13e84c94e30a9f1cb14ff2c85f5b018d" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "458781ccd850985372913bd4398cd3ff67c0115292a23b6d0fc7d1300f8e8394" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "98dc88b5868da649330bdde7ce84d7d674ebd5a4044b75edfcd6556f1b280921" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0b787373481ae7e845246f19f5c08b96c90433f5b8a6db72e6ecc51501df9272" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "379c335983b4d193681572f70b7b62049693be632a1bfdcebd41a2656c865eeb" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "93e07a6bc78ac0a4b08850d6652f673ec136ff3c9b4e854fb9b991e201872129" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6741875f8ccfd33ad121555dd68b8ce51718adf455366c869498fd1356bc78e6" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f34c6778b701895f7cb35069ce285c4866a7a5225f9c002967cd236e266885e6" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57bfbe8f0b8bfe8adeea31b17ceb6bcd92acedd07b1b21ddaa3698d74b0c1e7f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4e43d55c7d18bc945ab3397051decf9e2706ce337c462343bd745b9b9a2835a" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ee2560f64aeb2ecc90c806fb31a90fd69cdc5b9f329d7bf9c9ac3971968033e" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78b7bb4e5b1714fbee095b7f3657fa8128a7aafbd280826983369ba404897c85" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cbe6ac426fa857acf07366c8bbf849d2d895322a5b6e0c6ccdae1669b1f2bd" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7118acc566a5f7ddfd5679ae39ae45ab805e3fcf608429be916a38f41da28ab5" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0925e403dd8be407f6115f0b2df5d8ac8d08375103179ad6afc315f7730dd1f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f3f855de615f5ab3ee4ec3524fef4af4ea45cfe82b3062765e0abbb3aec94f60" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13c7519528ad81f41661591167de2b52a8d7f088030b37f5e838e0dbc3eeef9c" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08d588ddaf81fe51c5e54fab1df89e130ae58a343f23c71f1afe8eb126cef0a5" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cf784aa617dea61402fd2dda2d1f4313311b4f56b007e522e3d656415178e79" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6954134a6ef80f989a10a83f36e479668a4a428defb8cf3dbf24228c09337387" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9474a3f7f0892658dd0b6256842787640f09da28923a14634be0fb0cdfcf8b8e" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "248ec2cc43722f6307baa5787497d3dcd6455feeba1a189fac0843be67ada06b" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a42a54a58f746d7f4b9a12393afa18a5a08a3355fffd0e91180b139d9730c83f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7ede8e6c8787d8a48f3a71193c3414ef3cd1f57315f2f9a4d3e72cd8210e9672" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e07ee36ccfb19660afad8c969db8e877a501e9dad93a8f3869ba0ab4a4cc4490" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3658e111caeaa77d7b9c42e8304c7f852e1abf5881db028d96e3911708abe4c8" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9056925a09677e354f13c0e02bb9bc0a8e43538da6926c005ba884fa2f931ab2" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0fd9f7f74975878c8db1d213d3e52bdd17843d76ce1dd89c9f6ae9b4597b99f8" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "connection" + ] + }, + { + "id": "azure.ai.projects", + "namespace": "ai.project", + "displayName": "Foundry Projects (Beta)", + "description": "Manage Microsoft Foundry Project resources from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "05ab0ec11fab528f5e1b0a8dca18106a36cce43fb43fac1042adda480b631a96" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c5933acfa44010d8b22c5d6aab67004b45966bf1c727faa2243bb79e42709f9" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd8adde884d890d014af00305d5809b4b8ac63e7cffa0491ab4a5b0d6ed7d961" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c1f0776f370b944d5e2bc6f598c0a8fe774a2d366435bf67425d422e7f82bba8" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab46a77b23df002ec6f966d97291e88118eb0949937aecacc1f910561ac46099" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "530938820b0db2340499c8251d28594a793146e5a0fdc3ba3e21e2eb28caf731" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09f1694f36ef38e09c8a8bfcfbd9de2426809d59ffd25018371820f2c9d7ad5f" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a70243e09373ef47022c18984be692e849e8fb9e237422fcc31e940df922ee4" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10d6ed22c03a5bcd307cf2e9fb5905f80132910879e8b3a0f3d15adf0897aa83" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f5e84b1570168f2c3d96ee293d6d743e4292c1ec6e7bfd4a6a57aa2c2413b58c" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a73602e109df724066d9ba0cc57c799978c5a2c5eed64de87b4024eccb9e0f22" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "22f55ccd9b3338d8cd20a75643d309136e3ab5cee583694638de8ce1ef5a5bb7" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b93e6df3fdb9fb7a0bf96739f6d3aeefc64da8e770700f2d436380415121394a" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0264ccedcc703f611db3512eebb462d7c2b23ca19a7cf3765a999d3dd484f70c" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0079e348224a9c028c7e4026e5cf47a89c0e94b0d1dcd0ed1ed4c4dd5fcea464" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d11b09fc5b5dbb196181f753a197cd8cfd042ea9d4e2899d795d4e4e77113e81" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "14bed81d4a038cfc8b6612c766efae2b7af4bf7356e3d9aa829230292ebb380e" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "45ba06b1efa449712063d3d2e31a74c9b8e0c568bde37675f6c7d7733365cdcf" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions Microsoft Foundry projects from azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1617009be6797d8c3506ffd979aecac2394cd5d216a218eee38355b55932ebdd" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7eb31e5a8f396760f30d702001d9a210c6ddd50722eb78876580116c513b37e1" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53e92ae77f346ae98b2c02f78755e741d97ffcab363046187fbc316cc751a2f7" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c3280f411d46efa017e542fac5899251e9a2b73499c9e5e1f26eeb958ce3bfa" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c6443394f044be8a15766f683d914696148d24a6dc88e1f057b390b6e7b4911" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0dc607626708a7fd6a1c46494746bfc8d84a66acf655f1eb162fcafa7f4f5b0" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "project" + ] + }, + { + "id": "azure.ai.routines", + "namespace": "ai.routine", + "displayName": "Foundry Routines (Beta)", + "description": "Manage Microsoft Foundry Routines from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "104a6c37b12dbf9df0aa12f8a6d6e65ac3aa6e4e7620008a3396c00a476564bf" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9807a195ad454869ef7241dc5ee604001d5cfa866b63fc2add089c8f8ac8aa27" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00357f3f43e9c560e52b4ca4f752d02d07ae7ca048eeb288f3f61e3517f5cac4" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be7d6e43a7fb5ebb04babaa10caf8a40318210a241bfe2ed7d480323b05bda4f" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "991bac0c60820687da64ad08d4da7a055afd159164baab237961b878ef779b3e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fcc69e80d50a77eb737638bbed06c315bb17e2b5e108925a7bd12adb08baf0a1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "48b7eb6ac648fa955f08a3f70d1fae96289a18a39e1535d282029df639a27188" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "385b0e0b3682e6903929f7f8bdf430b2c4a9ed15c61dfea332c0a50afb7c7b7d" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b208caa652e492698bba87743a9eabb6d27ecd17120518018dd04eea0c5dcb40" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2c33a81a1f74c2aa1c58166bcde50dc99df9a61c953be80df43d08341c4b51f1" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00e381eb9bdc1367b633884258c2aae874cf51698776094858963973394addfb" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be4af31db97a694a68feda347cd0bff1f2552d98a1f18298b9ea5e1089b86f32" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c056df668eb98dc1e9f132ff054a607a203974d956930c174758f344ac1703d1" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e3b5c28a57d415af6915651cb033e26ce7235d953782353c3df6ee40cc4df4b" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c30b58c07e60f46353c1f4023bbcc18cf6c89f2bcea1a01b7c54988420737c8d" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e7cef5f09d65ba992cef9c559e0749f5747b4c4b47a16ec10785f30fd813c775" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d745b1485be738b8bbe9e0efb028543f8f9e0dee46664ee3d650d5f8b4e7dd8e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "84c77a3b2cf8f3672ffa960716f543dc2f9ecb7a7f6222eb4aa19a293be51511" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a61b03858587e97c4eb72e108542a95066ccc5bf51b740b8f64392714bec81ea" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2df3af97042a57153d77f3e278ddc12c04dd08d03e7ae6bef6b3aebd99216409" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "80b362b3a5cc01514b38af373e21d3e3d2f90edc87364d976173a687e08bec0c" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab5af0c8bf5931b3869f7d7d57ccfb6cd8588cea9b45a4232abc9dd6b512b43" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bbe562e377c547cdc30d0ecd7eb792e2bb22aa968ef9ff78974c8c9fa7ff76c8" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c58a248ff67bce7168e79f301501403d57e84c68e9a91756825d1d5e719e4db1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "routine" + ] + }, + { + "id": "azure.ai.skills", + "namespace": "ai.skill", + "displayName": "Foundry skills (Beta)", + "description": "Manage Microsoft Foundry skills (reusable agent behavioral guidelines) from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f804b02a9bea8e4574bbba9115d9e7f987e2cf1d6ff326632fe4cf6ab805c32" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8bcce6fef9d02f0c41d66bb1210855adc8dcb60e42a1f72eabf554451145d1a6" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc2c5e8007abb97602f0dbe9b7abce31c829b58cfae94be2ae3920c64720ff62" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec9435f10028cdc3527c077f3c1fcd13ba1691e66f70c3345831b6e381e49fa2" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e3dc4b30aef457f98d5372ed898b3e670bac4649d823673f382fdf79db5562c" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c57b9d78626c838e4d47861208976994c125b76a1827c0795c9cce198544064" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "65b7aaf01e2383db13b363634fc32935e844316c3b293907eb2ba4fb1a0593b6" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fad46b1f02b3bdbbe270f4ef40bbaecba893854b1ae45bf7e886347cb5ee1376" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "19dc1283bb56f121529776bb496645a2e33f00c8ae55ddc883cbb56a0264cb36" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1f7185df316798d3355dfea090ee7ad5ed688ea176de256258eab458ed5c50cd" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "943c80bca4c61245b17312d0d3bea89b38f210c7b76abdfe7fd505c75028069f" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69881178bc433cdfe16c83dac9f0e7657b760c7f02488d3284d348a3854987b6" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78cb172e59f3593b5406d8f8a05d1d03603256e26d0476c704862d7de7891650" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6941da75dbce6f515b6375a5c02e5a188350b0ffd39a53d24360652ebce0fd24" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ba70b8e4c85b48bcf099a75ead9c2d6b26755325ca24b2d3458a1b0947aedda" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "11761481e5e8d1d1b9959278b844175a744e1b79ed343a264b9019ccf80f11d5" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e1b5e4994b8f3e81caea4ea9b775a1da2509c88b477935734113d1d0827ba99" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6939e50863d18a834e3c69a8818eebf68e9a9f5752442b7ec016ed1d86070ea" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d240ce6af7a65f53a85907109cea295923f0efdbf035756b3eea07c8e51043ff" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aebcfc163a2a83f51dd714bd47ab878a68d46d4ffe823b95b5f886823dbeb540" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c8e50c0cc43db92a18483cb58bb4d3eb8744d6b9972d806591f6eb5c149fdd7" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "319d265f95c2aa09e643e02fd8a762703221b7ce02a3232ff53ab68872a82e52" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2f8aa18dc971d003286169999c781722def7614e4f90c66500bec8b86a62c1b" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "230bbf7b136fcf46dc262d2c6290d602eac086cf4562d93e8bac12a83eeec7d2" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "skill" + ] + }, + { + "id": "azure.ai.toolboxes", + "namespace": "ai.toolbox", + "displayName": "Foundry Toolboxes (Beta)", + "description": "Manage Microsoft Foundry Toolboxes from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1609d3550e18806f381003e8c5869e517e750b5434571916dd2de44cd2e9fbdd" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a14efaa002a68498dead6e6b3834e30b7a0a1c7a7796ce9f8987d7199b57e3ba" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8734bbb5d01a6fa15e9dd4b3b827469b9a285343bc0ba0db208b15badebc4e08" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0376494263e1bcc1723cbfb79542c1c63870dd2ea447d5de551472293258e105" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6d67561df8233e1dd520d99ad908711f801a4dd0ce518a68936b0219ea817814" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65ae168b0405a86d7435af84b2dd6d55139cd985e9cc7509d38f2462d4315a" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a7bbd3ffc3bc76031730c843f67c83d3f9f859e663065e081cb3b0fa6d015d5f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce84c47b2cd2c03d684ab34ccb1a642109653c467c179164606bf37eec6cf26c" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d28f2e307115e8a6a4af149abd973e301a76bf6a79541b7777fdd106a407d032" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6845078710671ccd7f6cab96c32024bd48d1ae0072fb2ca0612aae8dcb4c3d5" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09071a9389dcc849b662e0f6685a32eb0c3275259fc7a27f6541df68c5d9cf5f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "772ad814cccb2388278542b7280dd670097b377fe0a677faad8564adff194441" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7659e18ac4563d4fb031aef321bff58fa7bc793a20f4c8f0eeb8bc03772544e5" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e2c8d8d55c7b4515a7ef1b9697a47a4d63ba950b7368603b0a234d2e51e0c26f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a302497a8e56656bff3497fd7a62e15caa6afda398df9f0b6b9883edae77e671" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c419817347c5c7edc937a286804d3cb0fbc84aa9888954b8306c095a6ca2558b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d25149bee577e927c9687cf0cf99b657a3a76324101273eda618905a55e4bbbe" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fea4d18597ee88f996a6061cf18b9f8e413b4debf163fe0ae8de5dbc2d2cdc63" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e4210a683dfd0bbd00ef0c4ce1fe433ec59390de7b69a8902ee2fcb080ae11d" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a805c24bebfb1a0f09606efff8f5770c23af9a0b78e8e5055075bb08f73b2b94" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "209d4a62ab8a9f44eabba5c6d1a13fa885a1c2644128ab442935602f4f041141" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "650928d065b486179828c4fc4c8dd67890ebf5010f9a4726a26c79bcf7edccde" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7103983de5ec47bb293ddad3ea67a6bd32081eb398406fa96f0a6d6de8e5f6" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e8224e29d55ab2d74b758aa81feed8e334f8f3f8774c3796d62ce1896856060d" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c72f2364fc36f1302ed985b78646ae13f466ea79b2cfc3ec494c15a4cbc28ca6" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89cdbaea7e44ee96c3f666a2c70f5b7f1918f9bb18899b9756bf35a584f42ec3" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bff025e857694e1017251577ee8aa73a35624dcfd0629d420cc7e7a067c7065" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "795ad144894142aa3625f462ee76e8a425ad80220a8c929efb6eaabc7f177887" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53cecc106285c5a535846a2e29732ae5cd439e876e7e57546a5b76cf9f0346a3" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "96d4db3874e02c538e42ea83259dae51fead85cfe6b844f793245b53aab492fe" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b48f837f11260112236b18691f432ebf5ac1f1dd9b6e63214031d3c01a8235c0" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bf16ae06048bb13484e35670395c2e1bac59332ddfdac2c25cab373d7426fa8" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6cd9e7ef35f0cc6e5496871ebbea64f51c34bf3ed33fd3822d6611b4c8685435" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bb2b9fb65b7f9d5725402553ac6ef6d8d8c646241612353575f3d17db496b27b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "beee2ccd845b64b6319173dd19284e3c2259c1c579887a3d8937a6988cc1827f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "918c6cfe51d3a430ab24220d2831da9415d38b4159935f0a4544b16bf54f7eaa" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "toolbox" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "415965" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Fri, 24 Jul 2026 18:01:52 GMT + Etag: + - W/"8ddee58bb0a47628bf39be132d7e2bbb031082a04030f2bcbaffad1781fef567" + Expires: + - Fri, 24 Jul 2026 18:06:52 GMT + Source-Age: + - "211" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "2" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 913444e8016f73bd4252fcff7cac86aa45105426 + X-Frame-Options: + - deny + X-Github-Request-Id: + - FF5E:3131F3:A1690:CD5B2:6A63A308 + X-Served-By: + - cache-bfi-krnt7300089-BFI + X-Timer: + - S1784916113.699294,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 33.0319ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 384830 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","location":"eastus2","name":"azdtest-wf91d1a-1784915868","properties":{"correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceName":"rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M16.5060692S","mode":"Incremental","outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr3byfkdyh5dhvo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr3byfkdyh5dhvo"},"azurE_FUNCTION_URI":{"type":"String","value":"https://func-3byfkdyh5dhvo.azurewebsites.net"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"3209218408488532331","timestamp":"2026-07-24T17:59:37.3261935Z"},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "384830" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:01:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 481ef634-44d0-46fa-ab22-abf2f78cbfeb + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180200Z:481ef634-44d0-46fa-ab22-abf2f78cbfeb + X-Msedge-Ref: + - 'Ref A: 6BEE43BB2F344889B6BD4A7BB478BD01 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:01:58Z' + status: 200 OK + code: 200 + duration: 2.5164438s + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2927 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T17:59:37.3261935Z","duration":"PT1M16.5060692S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr3byfkdyh5dhvo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr3byfkdyh5dhvo"},"azurE_FUNCTION_URI":{"type":"String","value":"https://func-3byfkdyh5dhvo.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2927" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:02:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 04c35096-2016-4e33-b9fb-6d76e1048cb8 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180201Z:04c35096-2016-4e33-b9fb-6d76e1048cb8 + X-Msedge-Ref: + - 'Ref A: B03CED6418D445159B6ABD33D3BCFEAB Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:02:00Z' + status: 200 OK + code: 200 + duration: 520.6234ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1787 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo","name":"st3byfkdyh5dhvo","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo","name":"acr3byfkdyh5dhvo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-07-24T17:58:29.3776317Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-07-24T17:58:29.3776317Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverFarms/plan-3byfkdyh5dhvo","name":"plan-3byfkdyh5dhvo","type":"Microsoft.Web/serverFarms","sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1},"kind":"elastic","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"eastus2","identity":{"principalId":"bfbebaf6-69d6-4f72-a735-7bf3f422b2d7","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1787" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:02:00 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 5b40da62-c7b2-479d-9000-97a383fe8574 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180201Z:5b40da62-c7b2-479d-9000-97a383fe8574 + X-Msedge-Ref: + - 'Ref A: 1D6B4D84D1BC4612BE91972C48DB1E80 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:02:01Z' + status: 200 OK + code: 200 + duration: 175.3114ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2927 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T17:59:37.3261935Z","duration":"PT1M16.5060692S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr3byfkdyh5dhvo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr3byfkdyh5dhvo"},"azurE_FUNCTION_URI":{"type":"String","value":"https://func-3byfkdyh5dhvo.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2927" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:02:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 73f6fc82-93a7-4e0e-8b15-add2196e4321 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180202Z:73f6fc82-93a7-4e0e-8b15-add2196e4321 + X-Msedge-Ref: + - 'Ref A: 3843BF5930854231BE9F16902E60C237 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:02:01Z' + status: 200 OK + code: 200 + duration: 732.2305ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1787 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo","name":"st3byfkdyh5dhvo","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo","name":"acr3byfkdyh5dhvo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"},"systemData":{"createdBy":"jeffreychen@microsoft.com","createdByType":"User","createdAt":"2026-07-24T17:58:29.3776317Z","lastModifiedBy":"jeffreychen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2026-07-24T17:58:29.3776317Z"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverFarms/plan-3byfkdyh5dhvo","name":"plan-3byfkdyh5dhvo","type":"Microsoft.Web/serverFarms","sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1},"kind":"elastic","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a"}},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo","name":"func-3byfkdyh5dhvo","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"eastus2","identity":{"principalId":"bfbebaf6-69d6-4f72-a735-7bf3f422b2d7","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-wf91d1a","azd-service-name":"func"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1787" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:02:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - b9a1a811-20b8-444c-b38e-602be89c7e30 + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180202Z:b9a1a811-20b8-444c-b38e-602be89c7e30 + X-Msedge-Ref: + - 'Ref A: D256083EA9554EB49ED87B506810E76A Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:02:02Z' + status: 200 OK + code: 200 + duration: 116.927ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups/rg-azdtest-wf91d1a?api-version=2021-04-01 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 18:02:02 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRjkxRDFBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIiLCJqb2JTdG9yYWdlQWNjb3VudCI6Ii9jc20vc3RvcmFnZWFjY291bnRzL2dsb2JhbC9ycGZkbGpvYjAwcHJvZGJuMDMifQ?api-version=2021-04-01&t=639205129691407914&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=lA27RdxPgQCs2-bVE2fJStIO9doSr9yx1RodFfB3frHPtRi626fUbVTqNBi52VldcZSlq5GMpzHVptPzKfYj2S6IW_gx1JIyNJmipIZT9tyUDcRDw8T-niwnlbQd_u8KzKS_Q2yqt9zPC6Rm8zz3Jsz3czsqVWo5MUnfDL6B83T2MtzP4VuBYUeBrkJnOJgb2djGcpttUk6zMOLZoWrjKguc6fFRCwEWJT7xbjANd6zdWFd_M0ojW4JJJBS5arQ36bXhCLI0oz-H2hfupsxcpQptPjPQhdMSC_fUlEFJVXRgPbUsZdbxR47O6K6Tmx2B591hthKhRgP1x6XBa_kp3A&h=pf64dxjzpLQxh1swUq8SWi9wSbLxNhnViwDk06YHTaA + Pragma: + - no-cache + Retry-After: + - "0" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "199" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "2999" + X-Ms-Request-Id: + - 795b803c-abf2-47f4-9f4c-5af9e0bdff7a + X-Ms-Routing-Request-Id: + - EASTUS2:20260724T180202Z:795b803c-abf2-47f4-9f4c-5af9e0bdff7a + X-Msedge-Ref: + - 'Ref A: 35595F557ACC4C16A9D74E4751AE8C9A Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:02:02Z' + status: 202 Accepted + code: 202 + duration: 591.2529ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRjkxRDFBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIiLCJqb2JTdG9yYWdlQWNjb3VudCI6Ii9jc20vc3RvcmFnZWFjY291bnRzL2dsb2JhbC9ycGZkbGpvYjAwcHJvZGJuMDMifQ?api-version=2021-04-01&t=639205129691407914&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=lA27RdxPgQCs2-bVE2fJStIO9doSr9yx1RodFfB3frHPtRi626fUbVTqNBi52VldcZSlq5GMpzHVptPzKfYj2S6IW_gx1JIyNJmipIZT9tyUDcRDw8T-niwnlbQd_u8KzKS_Q2yqt9zPC6Rm8zz3Jsz3czsqVWo5MUnfDL6B83T2MtzP4VuBYUeBrkJnOJgb2djGcpttUk6zMOLZoWrjKguc6fFRCwEWJT7xbjANd6zdWFd_M0ojW4JJJBS5arQ36bXhCLI0oz-H2hfupsxcpQptPjPQhdMSC_fUlEFJVXRgPbUsZdbxR47O6K6Tmx2B591hthKhRgP1x6XBa_kp3A&h=pf64dxjzpLQxh1swUq8SWi9wSbLxNhnViwDk06YHTaA + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 18:03:03 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 79ccd4d6-1ed6-4588-b89e-361d02d86d17 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180304Z:79ccd4d6-1ed6-4588-b89e-361d02d86d17 + X-Msedge-Ref: + - 'Ref A: 66620F0FDD8843D995454E7C95ABC8FC Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:03:04Z' + status: 200 OK + code: 200 + duration: 400.479ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2927 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf91d1a","azd-layer-name":"","azd-provision-param-hash":"190edc333e8f37c54981bb902be25c96d1cf559ce595dc04c40c714c860cc24a"},"properties":{"templateHash":"3209218408488532331","parameters":{"environmentName":{"type":"String","value":"azdtest-wf91d1a"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"becb5bc4-2037-46ba-bd0e-9498f8dfe9f8"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T17:59:37.3261935Z","duration":"PT1M16.5060692S","correlationId":"8fb2e7b9-de4f-0ce9-a929-f6dd9eb25431","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf91d1a"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr3byfkdyh5dhvo.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr3byfkdyh5dhvo"},"azurE_FUNCTION_URI":{"type":"String","value":"https://func-3byfkdyh5dhvo.azurewebsites.net"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/2adafdd7-4c52-5795-b08c-54b837bac001"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.ContainerRegistry/registries/acr3byfkdyh5dhvo/providers/Microsoft.Authorization/roleAssignments/b4e49f62-9e24-5b8e-952f-8767c55f18e2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Storage/storageAccounts/st3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/serverfarms/plan-3byfkdyh5dhvo"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-wf91d1a/providers/Microsoft.Web/sites/func-3byfkdyh5dhvo"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2927" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:03:04 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 7b2822bf-010f-468f-bc8f-9db1cce7b50d + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180305Z:7b2822bf-010f-468f-bc8f-9db1cce7b50d + X-Msedge-Ref: + - 'Ref A: DA51D916CFDF45DDB50772B3347C927D Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:03:04Z' + status: 200 OK + code: 200 + duration: 363.4663ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 346 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wf91d1a"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "346" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 574 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wf91d1a"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-07-24T18:03:06.3589274Z","duration":"PT0.0009795S","correlationId":"eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a","providers":[],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868/operationStatuses/08584166906991167764?api-version=2021-04-01&t=639205129894371016&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=GCyGwQ0zgVug1g1hycWQjw2CC8dcddh6lSE2xtAZro0K1LHyzzOAu_Jzcj1AwSSvgY-UPTpDML2iTDugTtNPfdoVRzuhcQPkpVxZshLF0ZbMO9Wb6eNgJwZoLdvbqtsstLf11ooil5SM_RTecYCotRJVi88ZKR7XkRmZYvaI5asLT4gLchelq2tN4lVFp4hD7178eP1b_CEUrCFTzfwsl8_i_XyBw7mayeMr24eTMA6VjpwQIDrMvVss1HIR32KmAI-yT4LTt2qGoa4OzzVqOxarQml8QYnmPYU9Bdb4OIUuc7sTaJ7nsDAFFcwGDyf2-zE0h8zKYsdgo6RmCfz5Dg&h=25tIByuRBC9KFpUruO-YqMvz2x01X14DKDf7nFtCsXA + Cache-Control: + - no-cache + Content-Length: + - "574" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:03:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Deployment-Engine-Version: + - 1.701.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "2999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "199" + X-Ms-Request-Id: + - 82ee7f01-ed9c-4d99-9e19-db8f944e915e + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180309Z:82ee7f01-ed9c-4d99-9e19-db8f944e915e + X-Msedge-Ref: + - 'Ref A: 2E55B33CF7094F84A320A53FCE135355 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:03:05Z' + status: 200 OK + code: 200 + duration: 4.4334355s + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868/operationStatuses/08584166906991167764?api-version=2021-04-01&t=639205129894371016&c=MIIHlDCCBnygAwIBAgIQAcfN_Jd6ViGd1-EkFH97aDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQwOTA0MzUxMFoXDTI2MTAwNDEwMzUxMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9nzXnnnT0V5cDY5fHgY6fvt0f5K67TLY5rf3kXsgNDiGJL9Ub1_cJuWgTTjGYmxaPP6HFz_YOLdMBGPkVhZavejw0qLifjw8nEBivhzrnSlLVzv8ThjIxvzYq7Pixu564lZgpE4tktNQwXrbdQ8_M_ltt8Ia4jO8Wc47QJt-BIUGY10RRyuDzAEGrQRCDbQB1Kyo6IjF95ihEDSUcGthqOIsbqMERKgZokdpO3a8ikGNKVtOb3zrePXR71iCDdkdamGIsPVfGxaBtUDO5vqdKugYbOQDFCYaQdk7x3VINyRpvZXpU4-B41mD-vXX5Rm_X9BL0jN1rjSRIFvfK3YkxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRktXyyceQOrjzGGHfthVAJlrP3gjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzcyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS83Mi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBx5I6Sofmi5yGOz0alPqrZuIh1Qv1Gc7iCefJl7OITobABfs9PqLqAUqQ0NZt02K2ag8zFQWRLn3xJESxYpGcBV7meAUTJOJhRHdvwqFTOMyPwYKbVpl-gdceRQV0J4MdXD1EG8ZfrQqJh4yTpH9fs1bJNlNwJZx_jinURgGNM3AvMcEe8RipqTE4QFDEFqJqWftJzvHLBetVu8Z6AGm5099Z3hgXzQkneb6E4dITNtuFdibgZ_w2TYC64wJ1VSMZoWDioo50604N9fZooi7RvEeWH1iooHPyFIUtevrquxTYiMdLAwbW0FzEjba2h2TLxHn3wd3uzwLiJoLGRIzBT&s=GCyGwQ0zgVug1g1hycWQjw2CC8dcddh6lSE2xtAZro0K1LHyzzOAu_Jzcj1AwSSvgY-UPTpDML2iTDugTtNPfdoVRzuhcQPkpVxZshLF0ZbMO9Wb6eNgJwZoLdvbqtsstLf11ooil5SM_RTecYCotRJVi88ZKR7XkRmZYvaI5asLT4gLchelq2tN4lVFp4hD7178eP1b_CEUrCFTzfwsl8_i_XyBw7mayeMr24eTMA6VjpwQIDrMvVss1HIR32KmAI-yT4LTt2qGoa4OzzVqOxarQml8QYnmPYU9Bdb4OIUuc7sTaJ7nsDAFFcwGDyf2-zE0h8zKYsdgo6RmCfz5Dg&h=25tIByuRBC9KFpUruO-YqMvz2x01X14DKDf7nFtCsXA + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:03:14 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 3cb483d4-39fd-49d3-b311-2d07f9598787 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180315Z:3cb483d4-39fd-49d3-b311-2d07f9598787 + X-Msedge-Ref: + - 'Ref A: 3E01A8FFD314458DA664EB15AFB08F6E Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:03:14Z' + status: 200 OK + code: 200 + duration: 287.8385ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources/v1.2.0 (go1.26.4; Windows_NT),azdev/0.0.0-dev.0 (Go go1.26.4; windows/amd64) + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 609 + uncompressed: false + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-wf91d1a-1784915868","name":"azdtest-wf91d1a-1784915868","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wf91d1a"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-07-24T18:03:09.8609458Z","duration":"PT3.5020184S","correlationId":"eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "609" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 24 Jul 2026 18:03:14 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - eff0f9ed-d1ef-b411-5f8e-9c0e4253ee8a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "3749" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "249" + X-Ms-Request-Id: + - 338c7ed7-3754-4e74-a472-15ef25e895a3 + X-Ms-Routing-Request-Id: + - WESTUS2:20260724T180315Z:338c7ed7-3754-4e74-a472-15ef25e895a3 + X-Msedge-Ref: + - 'Ref A: 212B9010FA3F4B92A1110EF4DD167303 Ref B: CO6AA3150218017 Ref C: 2026-07-24T18:03:15Z' + status: 200 OK + code: 200 + duration: 356.2063ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: aka.ms + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://aka.ms:443/azd/extensions/registry + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive + Content-Length: + - "0" + Date: + - Fri, 24 Jul 2026 18:03:16 GMT + Expires: + - Fri, 24 Jul 2026 18:03:16 GMT + Location: + - https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + Pragma: + - no-cache + Request-Context: + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 + Server: + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 51.0081ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: raw.githubusercontent.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry + User-Agent: + - azsdk-go-azd-extensions/1.0.0 (go1.26.4; Windows_NT) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415965 + uncompressed: false + body: | + { + "extensions": [ + { + "id": "microsoft.azd.demo", + "namespace": "demo", + "displayName": "Demo Extension", + "description": "This extension provides examples of the azd extension framework.", + "versions": [ + { + "version": "0.1.0-beta.1", + "capabilities": [ + "custom-commands", + "lifecycle-events" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "61e6649e0def06fa5baf73501a5730074c432a3717d885ee3d77c44483b0753b" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7d9e71c158c864474301696c4a37a28740e5d3f5d94e156e58c2afcc0299b5ac" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "749c01818acdaf6969b0b4b73e8c71e136e01461c537fb6b42ef71a8bd3127b0" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2effed3b21fcc10654b1c4963da97ce079b6c8822539b7b142fc765c96f80f9a" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8979512bb82be5522f1f5c174027af4109b5165aeef9d305e586e070fcbe3942" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c112da4a74a7ebaafaf9b10340ed5da310a57bfba2d5fa8cedbf5dc65551902a" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.1.0-beta.1/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.3.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server" + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2149dde360286e9010a6263d1c2e4b89424546bf771469aa72bb5918c2746795" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aea875c6dede186a751455cc08b127dc88c7309d228f9190b7bc404c7d073279" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5eb11742c212a1ea517fd4672ef8a4cc32fd54586caf2f442e640420e0e1bf5b" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "32fc27795bf26d0d20dc6e67c4354b68ec0af5afce225a63307521fdea200c60" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0ce8cb4049f5a4a30e815f9332352d1cc2d46e5cab437cb4aa257174f0e4f99" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b4ae4aa10b2e35bbd4248c3fcf2f0ce1c81937248a8eccb79dc782411ea17b0" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.3.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.4.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d955061b14ca788a398f5e89e66f0a22f431d0660ff14c11264301856ea3e0db" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "61b088773af2d2690f2429235894c749ec0db22dfc79cab93f5b768457805d3c" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d929b42b5e3eeff51e6b59775302a4625cd880b9a0fc6c30daae9eb964b41cd8" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d6b4eae71c96bf7b73e9669c918918b738659d426315880c265fd5cef2ebbb28" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd52a10207ca1e401494257e0a435c1844a72fe052af1bbafec8cbaadc1302e2" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dc82efddac26fb79b011c2d22ffc05be49470f8170e56fdeee686f2266bb34d" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.4.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "74b087ae3cf41541591b73ba2a8956c17b93424bb9337aced0d7dfeaaeea377a" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "98be11366cda5f9d8ec3c4facc505ebbe51d86490285076a7d15a5651d1cb07e" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1adc16944a58854a760feb7aafa2edf9fc6bb0bf2db33c6a6ffd24765918ebc7" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9de313914549f6e7c6fc111df23a31d599eda468f0c0f2e9c5e8eebd859a4e92" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1ec350924e40f161db5bd181fbc9f6431230d0f124cc32889d4d4a68dda816ee" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "752f5721129ed0dac25d2304b3a0394551a35514b84db3ffa2d5046f5e529982" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.5.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c130f6534223fa998bffc6716b3db4dde86b420053e4e41e780d4b7961e891b9" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bcc6d26d044362ab23bb82c59452d9967bdf5d2dec1b67cf56a7e035e93f248f" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "673a66c3ab482e27b055534be13f3ff61970eac9cc1a559663ee5e77efc22c35" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2e41ce4464989e0c3ad401c7ce84ae0cb5e5287abe2e60d901a790fde0fb7ea3" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ddc09442c399e6597931b364a0e38f3712b5fe932b3270fc4f722b10d45df36" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7026c30919eeb5bdb6e80d6a2afb2a8614259137b9646607f58e5a231d3276f4" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.6.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e68599435a5854f7e8a96f5f93d5a602531e5416617b595f6db71c6f27ef161" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b8496560b936d3ce7ecc890cdc892ec2dabd3e17a41d3e8b81e3dc8f1e6ac79" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e87e451548036d5eea41c740d2125a174c46f3518626ca7d570c09c9aefbd8be" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f9dfd652a0d67fa525ec1772ab346c1b0f253bba8e4f3b66869f0ff5173a9622" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f408d344ce24cb010feed3c6a97dd923296a67f0af28ae01a9539aaa4a0bfa82" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e6439232a8b3218ecc64abbd34ee2c76e3eab3ab8aa60f7d79aec72ad08c0c38" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.0/microsoft-azd-demo-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "framework-service-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "demo", + "type": "service-target", + "description": "Deploys application components to demo" + }, + { + "name": "demo", + "type": "provisioning-provider", + "description": "Provisions infrastructure using the demo provider" + } + ], + "usage": "azd demo [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project & environment context.", + "usage": "azd demo context" + }, + { + "name": "prompt", + "description": "Display prompt capabilities.", + "usage": "azd demo prompt" + }, + { + "name": "ai models", + "description": "Browse available AI models interactively.", + "usage": "azd demo ai models" + }, + { + "name": "ai deployment", + "description": "Select model/version/SKU/capacity and resolve a deployment configuration.", + "usage": "azd demo ai deployment" + }, + { + "name": "ai quota", + "description": "View usage meters and limits for a selected location.", + "usage": "azd demo ai quota" + }, + { + "name": "mcp", + "description": "Start MCP server with demo tools.", + "usage": "azd demo mcp start" + }, + { + "name": "copilot", + "description": "Interactive Copilot chat loop demonstrating CopilotService gRPC API.", + "usage": "azd demo copilot [--model ] [--resume]" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "79ee739ef1e7ef1c57ca894e0970ba0c27f088d8b804d0c2fc0d47b1b014c910" + }, + "entryPoint": "microsoft-azd-demo-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a9cc1d960260fe6f01bdcccdeed4f7f2509a84b3ae7a274a33562fbd0880f145" + }, + "entryPoint": "microsoft-azd-demo-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2a501bd3123f5599c64853b65709161e77874b8a1c87dcced08e217474bb2383" + }, + "entryPoint": "microsoft-azd-demo-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fc0a310676dc575de2ed0c145decf39bc60b26b49118459f530207305637ade" + }, + "entryPoint": "microsoft-azd-demo-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "64f1c5461bc638bd0fd1092ee042dd99ca14d9fe083ac55ae642313b6e980e80" + }, + "entryPoint": "microsoft-azd-demo-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97a3a1c2cc34877194f7d6888ca07904b5a4323542158540f21aa6c099ad990e" + }, + "entryPoint": "microsoft-azd-demo-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-demo_0.7.1/microsoft-azd-demo-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.azd.extensions", + "namespace": "x", + "displayName": "azd extensions Developer Kit", + "description": "This extension provides a set of tools for azd extension developers to test and debug their extensions.", + "versions": [ + { + "version": "0.4.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78df8b4078248a30b880c0a93aee821d66b578734954c2c93e4ba2e3627ac05a" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abb0decd2f0fe4ae49915e5dd24d6d99d53f35dc25dc8ec358b65d53fd653729" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dcf1ac57618645bd34a004f55fe3ad0fdd13fbbb2c6558769982302970541d7e" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8b03759afcc24e2d3589fc92ea27c3f846aff9ed5cf0e04ec091d6d4c91ac33" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de30d8f238d0301e8e974441d68ad7af1fafc228ef8d4d7ca428c6248d4ea5c4" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3e405787eb03e63eabe33caefb7b00b0bd1fea79f60b57569e94144d5790c2cb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.4.2/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cb52900550b9ef61146ecac7def6372841f34260e98dc2098607375243e1a90" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d502e34339d60fc305bc7edd21ff9052d15b7d24ddb1835b9b5851aeab6373d4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cd944a69d85599b2002097e7049e9cef848bc5c1d10d1c11511d8fe178cccd" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dffb1bb79187e5970816ba118e4721e31cc77bc6106a6db2adfa2767bc7f0a1" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6dda5fff5510123148835a71f688c5c7d2bc68bc5aaf2a766eecda23d3ee9638" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f69dc47976ddeeb04b9a649b7e257a3841502b6fa350f2025eee94e072521ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "93b84245dbe900d689fd964deee9271d9f9d80c576d6fb4c8eb24b0da20518c4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4d5911dc6c3ede547b879a9ccbe6f755af4f6bbd8b0e15449a853ba17403d320" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7a569e7d27116b4561b74caade85e9cfe3a0b53579a9da5af06fc56e535f37c5" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "94161fc57d2cb3094bb7bad92595793b26b36af024bba01a28edcd12bb0b5cf6" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b766079ceae38148e192b8b7745be6099befe680aa7c7c6bbad180289b112d27" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c175a279d3f139a42537722bbcb93c28ea8c886f4870e8b0a73b759c9dc5336" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.5.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c78800b88d7010be996357f0fd823b557b98dcd4ad03c37ba740bcfa798af691" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81d05b3f09a20c02f5ff95e6733a365aec26fde247018d1226a6bf7d1fad475e" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e224f538bc1c8882dfffe8b3719bdbb23e8a300c2b1b17213a7741eb95d260f2" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7032f59e5a35b1400a3e586786bdfb9e6c7a06c6be3528ee57fc7327cfcd41dc" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "544dd88bbda18f80d24a2cde9bd48a5fb14d710ac30b830792f9cec6daf96115" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b4cfa9e6ec1d63f1486007455b67fa91c8930ada99df6dcd58d42d5f781190b1" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.6.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "70de5bed03991d9bc7905e8b60665fec423c9b81cb6e4527cab720f52c229560" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "108c2661e36da5bebf5ab98ea0c0bbd2aa1cdd35703e321f22ea9b0d9cdcfa18" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d3524de84401cedecfe42ea8909ea0e4d5ff3363c36d8a6a89dfcf7a15580baa" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9f871c80875f591a188c8e8ad05bae01a9ceea3fdb6ee3c04abaaeb22868d9b3" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a0c672841a9ed839c69655e467144bc3244169a00f2d70e2decdbe58e2d34fb" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38693fd9ecb02847195f2c23e3ea9c3aa12ab84192b64999cd0d3e0c299aeadb" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.7.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d301b37411b82d7d58a0ef40a41b8a941624f93e075697328f24e09177c8ce60" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "289ef95281803ce270c59d7d204a1e0582ec7b90200cee6c351e1a124ab19f8b" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59d71e51c7a0c1776d4c43f2a98c7728440cfe76a392849bdb8f9da914018a04" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d91fa6a478441a1ba8f852eb7aa333ef8c3f369be609e0bab56984c6da5db84" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20585d0509ef2bf6b6b1987344f1d386e3a3093f0c3faf52ab3870c30fc511ef" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ee33c49e08d37d367d0fca05ecc86236b6a4473e5283bdfb97c7d42b0c75bb09" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.7.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.9.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9872101b53a03ee97fdb294095f6eaf6de9a4fb7d97214b0bdce331f1720ce4" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "037e59508b5405f79f5b9c3a70277c63b0646ab50bcf40f06a8220d265a8a312" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a517ce280ab5256df79233be6a464ad7bba16aa70b5bc0a61de6e40f47c812bc" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "82c417090c5db778ecc8c99a90dd55af3a2cc4418c5aa6f30aa63c2bc8f1d747" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "59ce6817fa902c38c7d3bb4b98ce4221209de42f95a894875008c64aea7ad300" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bc9a2671bfb1176b7b1e522e96483ce030fb3f686f2c56f24c0e5b5c36729b3" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.9.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.10.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3972b447027a4335126407e5a7dde02273ed90f8851bdd11acb0df7ea99a10ae" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2fae81971e8767f1ff70748c791e5ca1e0caa5020ec9c48d573d3bf190004bdc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf413931238d79b26bed1242e59fb80c9e922c9385696598496f63389fc9ef" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1d8efcce9b68d8a7bc09227fffa0313254d4dbf8c3f64e8085ba2a0283010279" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a2dc779583d722b338d6fa146e9d3dc6d491f9134762dc0f844d81ab06f0548f" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8f9fcaa723052db4c2759e5786cd6aaef59657eee16085cb10d68d4eab34e98" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.10.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f6d47f6333f59e489c9f32c24f3abdb945235b8629abc6d2157e30f1b91814d9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d2f6823fdb3f2343cd5de9e0cd740af9b59faf48cfa07f9b4f8a96a0d7d51f9" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10a88883a3144e2d577755972cf9c958bb7bf99946c2ef09c9fbd7f6bc522418" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "011e4433cb1e1ff15cd8b7b20e3b3db90ac86476ee1a6ee86b44a118b553a34c" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81e21c0591073af8759073cdc0aa5356350b29dfa565d4296d81770eb9250155" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29d7667e5c5fe398b2bc2d49d8cd50c4ec2d7a80af39b5dc2661e0a279096b07" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.11.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "89ba0413718ab42271d70e723ae5c568dd4641e35de91623cb43590ce44b1c08" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "633bed7f65b7c7fdf38f264f9ee17f2b5421ad086a19deffff6e91f6409b0da1" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fac18d7791a94f292f959bdb5e9d871577462d25fd2a0c6934308b812e1d69df" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b969de90f1639b05bb5b9bd379f50fac2f731ad48fc773a6a8d2e478efc49495" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa1e9644a99e575eeb7925f6db38c942d5116ead358daf52afaab20529dd7b33" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd943d1b6df6b1a7b985c1496fa9966907838300799697590f4c375773e655e8" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.11.1/microsoft-azd-extensions-windows-arm64.zip" + } + } + }, + { + "version": "0.12.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd x [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new azd extension project.", + "usage": "azd x init" + }, + { + "name": "build", + "description": "Build the azd extension project.", + "usage": "azd x build" + }, + { + "name": "pack", + "description": "Package the azd extension project into a distributable format and add to local registry.", + "usage": "azd x pack" + }, + { + "name": "publish", + "description": "Publish the azd extension project to an extension source.", + "usage": "azd x publish" + }, + { + "name": "release", + "description": "Create a new release of the azd extension project to a GitHub repository.", + "usage": "azd x release" + }, + { + "name": "watch", + "description": "Watch for changes in the extension project and automatically rebuild and reload the extension.", + "usage": "azd x watch" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33e5f28ccccbbe199e9b02cac8da43853b50fd15d7d7c5cbc4b4888028b84ae7" + }, + "entryPoint": "microsoft-azd-extensions-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2397247ff6680bc9dce38f6d11a40096059cbce27f03fc0e27dad95fa05d0ebc" + }, + "entryPoint": "microsoft-azd-extensions-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb8ca717eb58064064ab3ae6dac01c62a330f231054a953fb558fe787f172852" + }, + "entryPoint": "microsoft-azd-extensions-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "59d5b1a75205300e188e7b14d45dfbc0fda24e0dbe3110a57dea58fa937f9857" + }, + "entryPoint": "microsoft-azd-extensions-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "523b5677e6ed818a749e0a10e4d80d18586e83b299ebedc24b7bf835227ce2ad" + }, + "entryPoint": "microsoft-azd-extensions-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3d1ddcbf7afbb39827a75359e5cb02ef309b80d26fc83dc82c2032eaebf2e608" + }, + "entryPoint": "microsoft-azd-extensions-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.coding-agent", + "namespace": "coding-agent", + "displayName": "Coding agent configuration extension", + "description": "This extension configures GitHub Copilot Coding Agent access to Azure", + "versions": [ + { + "version": "0.5.0", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "71999ce6b4a67986c0166d0cd886aa447b6acd27115caa5d20d3dbc9e594bb01" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2372d84cd1c76d04d691f2c464d1166ee6f7082d6dc23ba94214ddee060754de" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "665dc43d204f6afc8f50b4cc1e1cd05b777ce98b8c31a5d4b93c769b907d5edd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "34cbe6b5dc0f5713e5558ce180c9a14056ee3d07d0520179470e076d26c02fae" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "54ec94a92595a9d347eca3fb4c8fa6f757acd9da0e7f0b51f3cd2521785dca4f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a1c0eaf60677eaefaec854082ee0561286f74962c9cc2593e10b757252bb6e75" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "964de9002e4b08100714275e23167047fd5621c8fb0efed029b0ed3d1a96420a" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ad455dce44b4fcb059ef65f9ff24ec92524bd1eac7a916592650d1d046669502" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "df33da60669e3080f59ee3d6cbd673bf0d88c2b21e14e09e77d7098ba128816a" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33fac7f5bcb4c98356df3eb1d4cdb7148c6771dc036d142ac8b7e1e29d19acd5" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae16e0dad1e2a0cc1fbb72a29d88382f012b3afc49eb641d168d35bf348478b1" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "25a45e2c22b864c6e68055a3648a73f9349de4f3a57fa7b716fb959a90b85e3c" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.1/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.5.2", + "capabilities": [ + "custom-commands" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8eacae357e2863775df67cbc5de9016767ccc5a557bf6c581a10d8b1a561ae68" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f941c3605f4439a48ffe142d075af80918e3539f207b91fa9a5bd5ef6597167" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e27d8d1a424027fdb8b5540a2aef9383fb09deff14339c15cf426a0c2330e1e" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8e4cd57e8da4226627f4d8fbb57985810257ff7e620fb4d09eeedb092d9752b3" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3caf51c197cce0ef20ecb82c40208938f2cacc757fd0b32d2dff74bdcd61f45e" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cefd5193d58840b02f4d66093a13be33b271622953c2a455fc153e6660ee9932" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.5.2/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7edcff645fb411fd322fd5e05c82288a810fbe2455669f98c5744cf2b7426ccd" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5a0850febf78b2c2d5cd5c834129f0c98e2f62b0482a3e876810d2798fc0878e" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d67bc4a7f1c092527f0be5ec8d99adc97f75c9e36cb1bc53afceafc271f260bd" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f509b72b62d204fae8de8af43c292790e14dfbf7f960dfe4c8a53e0dd60258e9" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d9de087dc438281bd471d4d2a50146a9d4a430d97f3d473f97b1d21f34a0b07f" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cbb2fb1b527367f21112831fed3eaa458971ad2fe706bb6a7adab830a38958f5" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.0/azure-coding-agent-windows-arm64.zip" + } + } + }, + { + "version": "0.6.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd coding-agent [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e086cdd196108c7b7e6cb2a9e5852009caf3d0128b1fc0bd537764405fb81cb6" + }, + "entryPoint": "azure-coding-agent-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfbc5e06b0f1ae0e8e4a086a1e42e5d7e973a6e818b9b20efb925ac780f82db" + }, + "entryPoint": "azure-coding-agent-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b546f5fb825cb4ad758c535efb2c6414d5b163335974d0f2dd5c959eaee7fbf" + }, + "entryPoint": "azure-coding-agent-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5b81c9014dccc2a4d79f31d4d76992e952b5caf96bddd1881b388abb93d8ab88" + }, + "entryPoint": "azure-coding-agent-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bca57dc67b11aaea160696003ef0fa5734ccb57cbbef20cfe6c469360edfdf0" + }, + "entryPoint": "azure-coding-agent-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d2854d9c9bdba79b10a728d96a77d7c9f64f457927c0564292b9b3a40e9a3e6a" + }, + "entryPoint": "azure-coding-agent-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-coding-agent_0.6.1/azure-coding-agent-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.agents", + "namespace": "ai.agent", + "displayName": "Foundry agents (Beta)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Beta)", + "versions": [ + { + "version": "0.0.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "592dbeca411725b0ee7708a54469dfa05c88451793514731ce083d5a1c20bec5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd76870363590f07fdf3573d108bf6ec8305e1c34eee3169a5878e056505cd96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3687c1402cfa9fb9e4c9c704b033d977b317bdc1566f8588713fe91894062727" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "39dc586c923ddaf12e7a2369263670c39130be8754089feaef492e6048c849a2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2dcfed5bcb816d84ac2de15c574cc2e8ba14a2611a4627b0a8725682fa041b6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "88bbf844c8126d205764fdace0f0602fd0b2ca5d74ab815fcf6052b371338b9f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.6/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "529bf037aa00b425993d2b60a69e166f06901ff55c27c81792aae1b157c9219e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1faceba27c3d299edbaa98ab76e44d37862c7e503f32b73f60b1c81c9f27cea" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "51cedd928156febc984e5f01be4d8c571c0e4348bda88bfa7883fd08ba2d91a2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2587c7d6fbb713fd50f5d954e50c39f6b97868f8a74d0124edea6cacf5ad061b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a973a38f06b17815fc2bf447f8efbe9bad29025caefc90b3ecdbeb64a86e206e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2f00ec525e292d3ea6cb2b46c93051ddb9ca9816a900643c0c5a0b6ae823c21" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.0.7/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "056559c98e57616f03b79b529e8b4bbd194d5f41709a2c390d7226acb5975eb0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74590ec13f42df6a83d7b87286c56a13d5c0136266e7b133bd3501f0cfc834e2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bf7f7add058e7188b85cd1ec0c64b9e701ab41b09f1fefd1bc9968f988ae5c0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "658d29f454c8fd0d0125bcc3a29ad9d4c60c3c1f463c2f424d90484eb681a366" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3f6b41d2188eaa1b675ddb80af56baac8b5d90431baacf15113ea5a472fa6f2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33f17854250565ccf9c190a8106b12be2995e5f4da33d799a285985158f13d5d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.0-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service." + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ba7bb03a49d72fc7a7e7c407a1dcd929b5e471f7c3a39b1d2d12c077f46a6939" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41bf5fb808ed9e9f35e593afb6b730da045a67856caee37df75c4d36b17e6de7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "543e77c4196f75dbe10de53083e2de0f09845d9e1b862f745bafed607e49b80d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6624b2946dbae69638e40305ba3b576539413e3a8c2cbb2f6ca5d6d0ae5a7f2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4f96fca89b236c435acb44b72758b154d9bde3a51d7de8a600cc8006c540a3b4" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a3228008738c50113dbe745ea2676107e35d829e444c0ef8af5ca60bae44d074" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.1-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12293a86ee951d99bc0903e0436573f5da853eeb0f21d894f0fb5c5de670cfdb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "81449a1df145676cb20a002a3496177c823873deae31d4ca51edd9ff691d08b6" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "790de2fa0cd241e2daeb487483cbe5c9b1d2f5bb4a904daa753b5a03ac20b632" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d7943130b400a89eac4f1622d34fd1fff10821a14507ea8a0f3a37aaf15697e2" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "20352ae5d05604ad4ebac5c42b9d4f049afc5f921759a4534967ba672c78448e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06e7865cfed0f7e4b4dad9bde06f4763210b9afb67012676455b50b0c9629432" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.2-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.3-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2b5a065bf221bf1df09c1db384daaecf1855156e6f0690fb3671bef4c026104c" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6df8f0aada9f1f942ca144301f915ab6a47dc5b0c9588a6f2eb5fa5df088e20" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae1e4b6a9db29b878bdedbecb3fef542e10c166d8096ac4d8db10acb225f2821" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0b530151be2e212eae528fa05e9c18002d08f6aabec0ba599c3773e5ae0e808" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "88521aacfa86ef7c2291760c713a7c1ec4ad215aad3880949ed9c75cfaf3c97e" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1faa940eb4bbe184a638d39ee9edfba645f0294b256c955a6b296874d41a04c6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.3-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.4-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e6254a22f58c428c433fc763668eba1117d071f48e246201f1e558c376efefe" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4b851f18e2a6da956fbc0ff963d07cea6a82010c89204abe3a5ce06eee15ff07" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf780cd9490a8dbc5ef834193e4108bc406b7a9342c944fb076d8aecbf8c7dec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cdb9674d53eee5517fcfc4514cc1cc0ec8116ec8699950afedf4203d1687c65b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb44e21b0211f3ec0200ca4ae9dd972b49f112e190547d09527d92c9d6756ae6" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed513d182eaee078def74fe23f3f2fa3a04acf90a59f22165cd5628b077db8ab" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.4-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.5-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42bbc048f0c3b9bae4f6ade74a3ffff60c65d5ae44b96673234b6cdf135ad34a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "141cd0cf795ed292c8349bb7959404abafc65c38dc30e4f50d6eb9b619787dc8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bcd08ff98d33cef16cef1e70317def7ec48bc005a9776680d169ee686e650a45" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6136a93aed132cd8e96d5332278a6d79dcad2f5aa10ae86f4a8c5d274017e816" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c1105cee5a3e11fab42ff6aa8722c48506c293e97e484c47b9a1d67aad45e653" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "35a5cf98d074bfb7f1a4536b89b4913a6fde1057a8c4a46f35e51d0c6a6412bd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.5-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.6-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d7c4e93bd2970072501d249f3f9cd06132b5095638f8bb618a560776c2d1502a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e1d5d49a748aa848074d304dabf5a24f6f0f24ff9d56128a2cdb7c3fe917fee2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b04da0ea9002de1e12783be3de80d9d08cd85eefb90ddf12eb07ab1bebdd07" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5af0f6a8e4a384a4e4d6fdf32824c3b659ffb3032c65854d2a09cc74aad4e6cf" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b11ed749d1abc0d9e10d4652d78017542d2a505028de1c41a385a0cbcb9790a9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f2e07ab85442b30521ddf22b9d712e45a584e949a9e68edcc39a62ad0db03f68" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.6-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.8-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4d1dc48a79c4b556e1f0d0659c1d6cf62ea871398685a556c3420144bfd59bcc" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6eaa2f273333a1d097afcac3e9d66272f36e14175262ee14095c184477bf87f7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "32d8057b43e59a7e730ac4a05102843c1435beb57a893f894b89203d0673bec4" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d71239ef290d9e8ac6a37b57b3789f93de5f780320835944740db2dd86ae71c4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7cafa0ef09e5e9753f2f4dac6146a7e2eeac9c351f0cea8f75780161412a6b44" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e16b920ba65394d664792f09378e882e365b37b5e10bb908ae57774ec7e59022" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.8-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.9-preview", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c31376d787c451ab3262310649a55e5419abba98a24201f70378ce16ef670361" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "437e35394a96169c2525b06a5792e4cc660cbbb361e480ca499b3ea86a31df6d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "82852e4523a8a961e308259dba23800715802270eebd5cd92af0228485f816fc" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2719ce8b649d21cb5186908d974e79f1852543bdd2412a4b6ec1ee6a2fb0e4ef" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9c74fcb69b734954c05292f7be9ee2afe6feb4536898f35244e3dd3365db5188" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "608b08e206d53749313d6b2b30ab20c2b3288ca088c8ddbaad367802460b2e5c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.9-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.10-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c64121ba9dc31fbfb34d32d9244a21aa409dabf9e06ace243fd53a3baef7afea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90f2a83c05f6821dad45f5245e34c80bc0b07b7a2d3a6d203d68bd768bd12edf" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d386525c926eca66543f3b01446b41b0eaa291ba88c390140f6dcc0d1dbf3954" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "20c97b2b8a8cbc7b3815ebd6b7e6e1cc6b5aaa280187a486c55d651360e3f505" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "abe6ef169a9c302b4e3095840f5bf7f26070c10c81fdeaaa498e2cd82d69766d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "41adb6c666d0f88fcd49a45999658c3e6e6e2cd39fe256955362ca86dce5cd78" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.10-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.11-preview", + "requiredAzdVersion": ">1.23.4", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3f36b1754b2b810b9bcbf3f7a1b960bd91f97b66156ff686b0d4c2a7ba3ffbfb" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cae9de7cbde3ada737f893f357d8b4c0199fc7ac4c6132b426326cfff74eda31" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2e5da23e45728034744d1b8b7f06b84e56cb9df0ddc865df9d6b6d249b3e8d0d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5e19b59b6f76cb970de5c3bcd42c158d739d691e87cbd46a5e4f545501173abd" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a572a9e3d430898482f80054938aa6709ebb65a8a6df88e727aacaf45e92a872" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "046e9679b9dfa58f5d1c5d4344c7dcb1ecbc72ec2f3df74282709628e501429f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.11-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.12-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "86302e1fc56240bc2b78c2747ac53c04af24dc08282c9f287ab64a217b720cb5" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "55bfb37e0f0f5400c51f3767ab90a45198f80acc8610f2d2118d7ed5618136f5" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46b60240d9c1972749efb05af3e9a44f3749a921aa79a431e957ba0b666f6402" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ee8f28c2d169854c7faa3c5c95592839c92e674a2edac4e800e0181477e6058" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f26f81c762d32cffda75e9665645ed11ee528eab029e2f6a1334f42f2ca464d8" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f1bf020b2aca5d0d94726705a682c67b8a46e007da6c7b09ca45635f1809929d" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.12-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.13-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e78bbec69c38c86f9690f98f90d461c6e816c5d2059ab9cf1dd611868c3e44ec" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4c4c69e379b3272ede0d892f75efcf08f128ab93e42aac6278e7c9d548f5e841" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b20ac48c1d59991f2fd2eb47c789d95ab441c70ba5abb60a567efdf5c30bb8ea" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3159eb218dcc6b11fa71f00f8debe558bcd481bef7f0c2b0945b1a19eaf38790" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8b5453d9af26831aeec9d58eccc96219361fc49794e7eabdf8979b9fb806a675" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3494f5f1205ec5d78f3f725b93182e217f7e9b7e93f53de63bf356c72656fd69" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.13-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.14-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c77b6f268659c93f91865a977970a941e36b00f2af2004a60556fd6692d8a28" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dda0c803d1f116325c560e2673d3e803999a84145bc873e2d68a4dfb0b5fca5e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9006a086c3b5d4d1a7819ca50c749075e3cb2bf0520e43c5027ceb1ff072c9f8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6d426f8658705012f6672d2c718f392babf0a9e448bdf6adea1736c944406070" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8c7f6d83d55ca7f16f7de2ee41421a90cdc35aea617112fe4d0f169c57d2b90d" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4e47b751bccea4518b803a4980bc53453925bc88c75f9c7fd5417116bb468b98" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.14-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.15-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9ccf244978094a6a59b33f090af06dd62f71b19fd9b6014a9c02639856cfca87" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fe7c8d0d67b94461cedbe12e4ace77ad96bde948ebd1d530aa20f41e219f8d7d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c217ab5583e34e7ff884248b62d3af94a77dc0b3453538b48e559428c5119a5b" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6fd4d7e1f0aba957065de343da7cf06cfbed993abfe5da7a0615e913197d8876" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bad25e242dd148c12b5616ecc755f858f65161d78bd0ada2afd7c880cae47de3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9cc2d182f722b19ad22a6f28257b9d06e42c188cd6badd38264be3c410747f53" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.15-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.16-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f724bed29577250f7ff443913682247b1833cd05c843f19f942c48e092af588e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c88c0e76bfdfca7266d24d1372f28a047794f068e01d4279ecc993126d28ceb2" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c5943072ca1a8baee772ce9390ff99abf363258950454149e9e0c117453a5ce2" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be8a8652381f658587e99f99b85d1272be02ea563ccdcb43ae77a69de6161166" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b6b033133414b32e74c9a6c01506cb343c02b56f136f68450349e8139b26cc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "42f1065dfa623259614078add0cb6a5c1fd7689ffd16e2b54be68ac20f5792b9" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.16-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.17-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cafe851463b9329f4284ea41ff161b8deb6e7bc79e2519cda9c83a4413deff0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cd4756b84f0ee721089ea3d3e1e0b47b23d8cf152c1861bd13be29e24c98027f" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4c7ea2edbd8c273ef387d9866c997be079f306ac19534eb8739a0e93b2f3f614" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b1e95a55d31b08d7153b14226d21ad98b138ebf438b9cb4b617ac6e5092389c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbcaaa3b037f5c9d2c9a92e6d40165520ad5fa518689b000df44c279d73a14eb" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2b3ae89d3cd4476f334ce75db4a12329c0f424ecd499941ba298707892fa5146" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.17-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.18-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0afd0d07300bff164c2cb46a7b08646ec61501e5dc4bbdc7b5e29246a3875ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9579621bfbd39baacc8f95cfecc2443e4e47c6eff7eeaaadbbb4de5815a250ed" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "25a7d89e61eda8f08ae08f467b198dccc17e5c5b5384e6c3a92113e653fb1584" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "90d2b4611311c20179168ddeac0d70083c7106cc0ae0eb692a37dbfc36f922f0" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e9fc6877f6e32fcac6e58e9988491eb8ea059ccf25c68dc5f8b213a4d149f7c7" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a860745c473a8b98b57f05cb051fed3fdcd6229065a6b914240d7ffbaa448b44" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.18-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.19-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "efebbb67a0437da9ad67191500a6caa0fb28d3f84093bac39d2356a2412dd3ce" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2dda1a039c61dbd45c73251eed5c0b90aafe4345086e0d31cb2f152d80e94e4a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de9491add21ea593e8b2714b7b23bf3eb249bd0088e0323b1fb787c26d8db952" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4227ed50d60ee71978447e6d5218acd06c9a4e97b45584e1f76a7159df1752f8" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "816416f8b5e7a4cf9d5235aca1f140f170caec9cdcb26b0d3854340bcd3b7edd" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c34d427b278f3cc33adfc8592acd5fb638dcead55fdb80c24a8ae220d5d03b1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.19-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.20-preview", + "requiredAzdVersion": ">1.23.6", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7ebdead1c9f6a5e4ed4ecb619654d7cd2167043207d545f2340285b5bf73896e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "27deab2e9eeb91d34e3c7a6767bdaa62b5ee69ed766f1029dbb4d51b025cd2db" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5888303efb6e2d67e41b5d78d592b4a8d3097077e6f20267a87d0ea88bd0a438" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "973c938ed1945e745337495978262b13f5fb8aa64718f75f7411669aba713db5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d41544242411dd4b9f2bfca45e66717740ca5ec324de22e45ff1551d71ee74b5" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5f18fae3cc684582b2cd87262c51fad69db16d6514d792f117b2c0f0d831d701" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.20-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.21-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "910138effb7da8dddcc623e84679fafb6b2a4b845cd6246854a16a4233d902ea" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "587703a9449d81bbd0604b2e92a54a84622bc93c4128cd67a5153317794b1511" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cabdbaeaca0b91180191d1da5ff3840031ce79e4117584ffbe6c5cf991fc21a0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3b50bd5ff9d2c4d0d8620b4498ef3debb822007809bd8d583abd7f2db25a74d4" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a3569dd67cc01847ce2cfe927431048ff167f7768fd08f53104ed874c8ea9ce3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08b037174eecb07791aabba6ab262eec8efecd313ef0900ff8d6c768ebe99a79" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.21-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.22-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "81b99ea77776b21ec56bf7b3caef1e667873de24b9f63480acb531d3b9b8c7ab" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3c36c0960222417b104ea40824d08442886ed522a949825365a45d627d8bc8c4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f8b671f04c394d8fd33f50c705e51d1768bd827b0f534ec957277bf1563701a3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "29b3d8d9216c7e6111b8dacca4f9fc3f3471e9e68ab2eda98d309556fe273199" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94b1ae318bfd8043d3cff63d72d412389585912b38ee2dbca1fe56e4bbfdf009" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2ecda818d9aed29aa83cd5682998aefd6a3b4edae4e4393d4e67e01da2775ef6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.22-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.23-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d4f13a93cf123378a4bce6a5e7c9ae354c5beebbb75cda6df15ddd72e2d05e53" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cc821aaf3d9342c2df7ab18a5298f4bed4eff28c86e07d27b2a549287519d189" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8a30f75c10eecc07aa061faff750e86bcc972a76294cfe3ac8dcb9b6f88c1c8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c537c9880c2438528d3f3c8bc10e413f9b3805bb853adf446474d1de73e107a1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9a42feb9469927ffbea0815babdb4ca1df167e888e35f481bae4dc4c1f043eef" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "33e9f8e38dedac75542e32da4fdf282804e014aff5cd08c457f8240f27d75b30" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.23-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.24-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "27c9e937df216c570d4ec5292532f58663cf95ef986bdcc844998efa1bb73082" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5c64a7b0f14dca56649d5444bbb8e7a54d4c0c3a9bdb6c79f9baa9428a2160c7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc786a142560956b5efcdc0a75749ed9ba538c6bb29deb910eedbbe8901d6d98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e452a2f2147dc22408a5d0795061666ceef9ffe4927ce835700596283668931a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "75957254fd7470bd66ced0f981961aedac34be48ddd13f92cb4bc4bb53294d5b" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfad02e4cd60529f4f233e2b27ead7227bcc15595c2c2e4981e117fba0d81f7f" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.24-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.25-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "990bb47e30bb3b8fdbaa123e41b0eb80029c4fee22bafafe7e131c0ae658fe32" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f69309b7f570559db88ff7214334a4fca4dafdbd54eaa35ae428766dbde6576d" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0431d1b90c9308f9e5e159a042b358ff2ec9f4565cbbac667856479967db729c" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "63f9f67c7be549f05fe2c3720eb09c5f80436947026a62e1a5c4bdd40586c167" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa44b7325dca43c59576ed5abf131f6f858ed1668c06b308b2f2b2d4d9256217" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce6f3a3a2f6f48d1db333ba607c726032142bdf095d942d2e4ae5044c6ae5622" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.25-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.26-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a3cb2d1b71900d20b407f4b5348eca346b7ce0dd74c9a95cc17543f678e94a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a8f0a98e8f709283137c2588bf6a713c89da9390a4255b8372939fa4dc3de0d3" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "33352dbd47f53e660f996c15bbc7f650865de06c735c8891d0455bf592d3b0b1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d97a577b96bff189e60438424139d9ad112546544f2e64788e5cde2ed51bf83f" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "68b8c966b418d661678ebcafeba5bca9b9657d092a5a2a1cece289906ae6b07c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "accff36ae2c605244ceb68601630397d58acdee9901f0792b20deb6fedbd31c1" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.26-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.27-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0e5ec072793d049af3954bdbf6f13868a7ff4573a64d7d0bcf8d213d3b77a0b" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91b0ef8a0138608a67cfabc8c757908c192b42e65c7c06278ce5373f2bed1b08" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e758b845cf21b801d97475a5b36d69bbfb8364a3222733d490b64f13305b9aa9" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "018095dc547b69a384e20ef2d0680a53046cd2d33a43cfce6b26d835df2cd178" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7d27ce8a58a810a2f755637837fcceb8ccdb8e78f1855df389eeb8256357f897" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "00d72d45ae175b5db9ddb28b064020f27fec3076f9edfae6afdeba54aac55560" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.27-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.28-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "de8a77862a398f0ff9c4f130a90d7bb443812751b02a3c9c5fa0873fbc02d310" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "05e2521fb6e5319be6355a7e363d90a314a56f1c6d425270da33e9ef7555c3e8" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0037a09d6a2fc23e4cfe42c0b33f3bbff803caf7a10207e24782cf27018f0b77" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06d246fc1c7368352bd8a50fb531dbefe97bd5a6fc5fa5953a0ae39ed3dff48a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1f6f0707afecc7c984b373d92b78416b0b9b5f019970d63007120ed48c4e7520" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "91d57ef3b458a66acada5edd666a4075ecf52551516681e0df1e79a016895dc6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.28-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.29-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d512a4a2ac982f65d23ed5e6ce9de355d49286f30191794b879b8afa4109a264" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b8e9e38efa6180fd4677c44c9381ed031ceb966d9b9a9fe3e1a86eede73f8178" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab960b783244c1e19e8be378b8b3962f8983b4464e2bf78875b136295c91a2d" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7b9202e93753c37270ae00985184d4752d22ba6c61d0e871fa6f549c30b62919" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3b0295ee0823bf60e8bb49a68901d3e0d830d8a458da99647ab6dd4fc3aa5a8f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c274b0fdfc311bdf4dd52a6a5403692d252e214a1cb27c91573223139da428a" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.29-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.30-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09993c41d96d51cdc656bbd4f996124280d52e1a0ed2c68bac1cecb23d1da108" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c423b779ee5a7c9e047856d7346d46aadc281ced036dd804a24c4f6f39acedb" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b3fe863959c4b075092d824c1c3003be78a2c6fb0949d12cb03a85fb395e3a14" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5628f47608b8ac16030a9ec5f30c9979c2496cd1a72fe77b8db295a4ada58205" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b2a57f8d305cc42d511c35b9890d7fd20cb46196a677d1fbcc4f8164c961ad85" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "abe185385d2607fefd1dc126b72fd1d3f19cc1146bf7ad4d4715858cc70f7cbd" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.30-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.31-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab396ab8dd3b627e0467e35535f6cb6bb29efb475986f7218cf2322946e4e33a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "919f18a74e4fa85d8b3db74e34e1d41af10b1e9a78fae171be7e42085f8bfef9" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dbcf13152499e43dee123bf8d3a25aba16f2f4cf287975187b9f79b62495cb53" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2a84f09164cf0260727e82e1e43ace5aef7a8d3380e0602221d05ece9230fd87" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e3a9d3f0358852767babe84ce16fb01e52427458776751e11d2024fd77694a0a" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1ff890de9c6507ff8a2e104e697545e1928eb4f1557a35e06f7c2168478507c3" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.31-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.32-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3581ff17669463882b1dc477d2986b6e79c5769df9d0a6e566cd073da6d7f18a" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a524908af85bfbbaf822eb0057ea5afa25ac3de3d5e5dc06e3d5a9b56d65957" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "22c694cd87e5c6520fbdc833bc6c14c3d280fb8d554a30c09bf5792df4d8dec3" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02033552191d66067ea1af868c1fcfaefd97aeffbc82657f4844e6445a4ec31a" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6b54ae1214fc50b38a9275e661fe62c756cba99acf2caced9b11defda3e28871" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "62f52c8b70c789b4fa9c0b966be740950dc6df235a944dc052c791c6f611790b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.32-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.33-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5a080e5dfbf57a9f85b70bd68fb5b1e442cd9928c4f451e69e338b24286eb441" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "53f332fa798dba743ad30e6967402f7eaa2c521f21c4d7ce76f2f1c55ff59628" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "29e47f46aec03efccb0581e3f6f46545c45b074907c77400b809f379a629e5fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "38f2e6d72165b8e47b54ebd7e2c9a7d34c30ccb428dd98b4bb7538475794533b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d1693f492941c77081b1eb0616fe61c5ce4a25567bc57b72d5963fab7f61f809" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e473201c8c7208f0f41088df4a136e40afbd1fba9f94f880cfb6c1f8b672c469" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.33-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.34-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9d5ef6fc956a6b843d8653405ba040a89e6fd49232f84946cbea47dbecc2f430" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c530b651a21550a050b899495ab24320a573c79f66b2f0dcd0352509d7f260d4" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4e0d9694847b4af6cda6ac48675ff99722887d9fed8907af4f5e83c170f0cc6" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b2d28f0efb9f946059e96b325aa1981285cf2b108e11f475b34d38d1e41585c" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "42dbcdbd8e8ceaeb79d0f5eb4367401bd89022594af9bd0acd6dea80e4833c22" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0f962b13b5f3794f534ee5f28b7fb912b5693e63a70a552764a0e8dbf5d0f176" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.34-preview/azure-ai-agents-windows-arm64.zip" + } + } + }, + { + "version": "0.1.35-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3d63fc59f473a9b09cdbc3d6d141a93c06974bb5f5f17849bead025a6f495fb3" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "46dd13c9d28b77b7acf997845316b712e4676da5c40c7b58dbf8b586bf3d9be0" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "44e30aae1e93ee4d255ce66bafc59ad54f11f263f61b6738b3b8253b4d668aec" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "af0f9d751bf417c5f1da9cbe91aed19b5d367803c736ec6bb2c3c156c0ee1631" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2c332b02783c831f088fa0dc7845479968681c314735075b8e3eadd064c024a2" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "332b41979a2257548f9dcc9289470928a5c29f6dee3be484487222f0cbe3d1e4" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.35-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.36-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13fbc474e4a13ef3f3ee4ec73dcf8b62ca9a90d5639d0bbd561aba4198418686" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf1e5dc9fa0657985c8cf78c754936279bc64be0827aceaaf3764f3eff955964" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5e7e40ac27507737aa769c96ec81690a45d30312c41e57655d52a87a83b22a8" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cfffce78ebb65cf2dbbac9994f24a871995580d74128bc629f92c69a669d9fb5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c09b7060caa713e153bb377ef1670f4fcf1febaaeb18fa9a1b843eb55923d899" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e747c3fe88345cbbc30b5a670049171d6ad7662a554652bcbd2ae8e7fe68d35b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.36-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.37-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "727c0bc9e580a336344f5780dcc99aac209f99b0ff957fd0727e75738261a122" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c99c8f39e4184b4aeac52d4ae842c63cebfd1cad406fe0bf9c13fbf6dc4358e" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7230d3c0d6d74804deec9a643ad54cc1bb06343aa63d467e1072d0ea6e0c7a98" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6ad328be144a82069f3bddff7138201f3911846abd869f1cf33a27d205a3f08" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0e110c6966db94516a9f5c0549de6378f8534aabf5bd649eee5d217a5747f21" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b2fd1dc5a435d683b92c2fdde6461264f8af66dec7b6e4abd932e0815f13e6ac" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.37-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.38-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e47757301e5593d726c82c99ab9a6ab257bdbb5522f2ca6394ecc9a254029e01" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "952a55e94d5f618bc2f220c014294a3cb80e7845972c03c83d88c6c53b7bbc5c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6eacad9938e63d47e451895c9100b0a27669a12791478c5cacf95edd4ae1b200" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "261d6da1779a74f7d87c6bb03c23e1259062b86e27a944a2100ec7ec90cd6ec5" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "845ec0d762303e2f8e42a6bc0fcfaa7a2472ec4174ad3b7d3d0a908b9ff9a0c1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d4e955655b4ba7bbc2861c9fc92afb51950a4bc60cc0645864cdfc9a902365ea" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.38-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.39-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f008d22a441d3109344d1de47504589a914dcb4843815d7ab1fa439f11a2220e" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "65a54011cf84d3f4584e7a88731debf5910208ece0bc084b38b4ab3300fb4e1c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3fa350e2860f9c58bbb7f204cc094b9437e04e19acb51fd9266680494b35fc7e" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "876fdc2551c88de050000550577c8d2a07b994cd791c2916928809bf69a1cdc1" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e5862e467f6bed6f51cfd8ef8ebb0b249da0fa77d6adf7e9327935099066c577" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8cf4f4009336b82e432c9fc0d7ddbc21631939967a08eedd69b997f1def7d7de" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.39-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.40-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab6caea8cd32f65c99d4b552210cf97b022c8cc9686e5569aa4963758f144f86" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bf13056b2c912878ed117cc7553914e16d34b29a4ef15b70dd4e6ef670c40543" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0435921a3bfd30e4e9291d145b26f9b6e077a58ef808cc826365f02c7ee492e1" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "50ae990e010c2766948bfa24096e03677dc06ff28e9483f2a7cc07cc9366331b" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b9fd9c5b73878caa73c47220f06cde0888e0722a7da8ccd1ee59465e52f41e9" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9c413a07c05ac31129cafe32faae0b9c252dc639d0122a6186e420369eaad6e6" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.40-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "0.1.41-preview", + "requiredAzdVersion": ">1.25.2", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0678e3b75a072b024bc1e50647428931b2737b3104613f152c2dc7ce2f5e289" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "5da236120d2f9ed8f8ccbcebec580a2aee212dd351d5a224d8067643b2abb98b" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e1e9babc2319d4f8e72453996caf486e3bdc46d13b6719e45b4bbd0e5942cc8f" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7a690ab21e3f888e0e7eaa19911949952661d673571dca54db45d6f43470e036" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "709d63b47982687ce23b3868db58950f46bcde0520dae87fc1658a48c3bbdc99" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89690db25edda9825785752ad1740d8069148bc8e0264f5b482d86905eb63a01" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_0.1.41-preview/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57862cea72229938e7bc22c6b9000d497732919386786e3a54c5702c51ab7443" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4af8331d5e9824efbbad0dcb8c55f7098efe1a8d6b26356dc6cb917df2d0222c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "624b22f27b49136965ffc19ee00229dfba819177dd0987afadabc747e0ef0eaa" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bc8c7ffe937751b9f602ca85a49f1be2cae4afeea9f7f3f73f77fc19d6f998e" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c36bee112dd3af5b378c6111b979509c7a23c58ad89657a9adca11c193871f2f" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ac34cba2e3e55f42fb5d530e3debc26fb8a152a783852a91899c7e14f84667b5" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.2/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6fa75b4cdb2c47d055ab2e82cc1147ea28c294367c40b7925fa47c8cc8ef2dc0" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da154c09f367500da02d0e4e25e028ce83694c53f0ca75b6c29ab07ad079de3c" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "948ffbcc4f74edc24a47fafc5af382d5934595f54afd20f6dcde00062cb35517" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a45b6fec76d3b3713215e26d00dd37e9c2017b54ec0518156a842cccd5861323" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3eb977ff7a2031024dab366e144594398246e126c9a65526aa7ba3529c8944f1" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0e63be3171eb638becf9de012e18df91c43737f851100021fe86c1cf98a62558" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.3/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fa46efea07f5ac886d78804cc0c7bb8d9e6393938a153054d4044dd04b5c4f92" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9c804454a903d7ea6bd119b668d8a28334acdb147247ade59924856922b01e7" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "550273bc3ccafa5d8b2df0bcc637d785f7ebb2febe5ea84c89ed0c4822e745fe" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "371e605d6c65d5464fd3ac4a780f64cb095aaeb9e9177d084358501f21bb72ec" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5c5da3ae9b7dc94e170a60ad23977977351aada59c40c08f3614a0b5dd058be3" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6fec88c43a72df9ff0a813fb10564daaddefc0372cd7092e859a3f3ac8b896c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.4/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.5", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4e11128596cef681bd84bfe264ddc9f83ce4eb8a60eb195bda83e8f0c4261959" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17897ef3d792a4fb07364b14185519bfdc880534c4b1fd040aabe4df23fc3f96" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9177556979825e5b635f67bf5d342faa425dd2b37b0b775fb3490e92e8000783" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b41aca5238ed0c6eecab98a713390a5da18635497547402f1027a482145acd69" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ec250bc7acdf12cf26392b5377a01b537fcdbd18749d075f7add3892f7b3ba9c" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "10131c2fd8699d36b73148966adc2cd81bfc852f2b9835a9471fb27f463d2220" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.5/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.6", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions a Microsoft Foundry project from azure.yaml without an on-disk infra/ directory" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4556e676b20f374560df2a169ea97f2eb97dca0428e69cdf6d5ca3ef256c5098" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4dfd7ed78cf07837a393979cd110672465f97b3fa03729496fc321fdae39178a" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5592cf6d958ecc65dd6004c5a563927184da809a5fc490b9b339b08060493a38" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7f74cf6704a326c0a1e93e8572e3870a87f147281bf4dd6f9fdc10efa423efd3" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1445e51499d0e7511d945c2dc26a6614f0f2b621a7ce8dbf2c0ea2faf31004fc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "dd7f8ebd88e1af74db3b68f4fe78e91a07edb5865ee05594866086feaa09626b" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.6/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.7", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "mcp-server", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.agent", + "type": "service-target", + "description": "Deploys agents to the Foundry Agent Service" + } + ], + "usage": "azd ai agent [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI agent project.", + "usage": "azd ai agent init" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e6c74f67391dfd3177a7faea0bba535c96f2a241cbe1900ab988263e54b042cf" + }, + "entryPoint": "azure-ai-agents-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "86054e5bc2b81a15122b4ea9372bb99b006676a75b1245d122d960e6b48d0810" + }, + "entryPoint": "azure-ai-agents-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "94426cc5667d12f24dfb5a4c26635f7f0bd16ca8a74a4b5b17c3ad0f6b5870d0" + }, + "entryPoint": "azure-ai-agents-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0ffb21d7ae525174425c5d9bfc0f0ac06137d82740b2a0e89099e84c31da5ad" + }, + "entryPoint": "azure-ai-agents-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "219cad26c2629c4b3411da7d9bfd8d9b17ba147c2fa6d3a44e56265bb6036abc" + }, + "entryPoint": "azure-ai-agents-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8651044a1c03e34baa3fdb9daf5c957d5ddbe86e50ca08ce32cd4b230ad4416c" + }, + "entryPoint": "azure-ai-agents-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-agents_1.0.0-beta.7/azure-ai-agents-windows-arm64.zip" + } + }, + "dependencies": [ + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + } + ] + } + ] + }, + { + "id": "microsoft.azd.concurx", + "namespace": "concurx", + "displayName": "Concurx", + "description": "Concurrent execution for azd deployment", + "versions": [ + { + "version": "0.0.1", + "capabilities": [ + "custom-commands" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "91aee92ffa7fa3942d7935421090d3d9a3e11ef349bd055ecc192f797e3c7550" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8c57a10fa99f708d8d2239dbf2d9da054779d8d4d1722fe7594604163e9fc5ce" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49610ff4ce2c68fed22f8b5104df210a2fb193e5602fd257278b89b692d9a6d6" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ed0f6d1b7de9f1f377db8a61e02d4a1e77e14f1bd85ee56cd2102003a1826e93" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "048d8951105fb1620b4de27c66dd825d27eb43403bab6a3bff8f9824035a7adb" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "858ebcaff372a78d85f3a192b67173d3843bec34d68cfc67e79e81417908f74e" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.1/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "cbd6ab2b8406654bf8b715ef4471085027f2e94fd820dd8678541a39348467d9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0381abfffe4a1586a9c57f023819c8655c0aacf518b5da7fef5b1907b0efe1a9" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "fb00169ae47b919d874bb34518cea2a38c55124084b9c841da8e1e498e925048" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "74e5673ac35945c9255bf8d62d9da3356dc89ad0a7034413238984b7ada4ff14" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d2b7931be0763304a822b92dc540df8b93a66beaaad706884ce349cd66235b09" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "315ef7fa448361d2963902296786d649ba394f233cad7769878ca1b7b9f3e76a" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.0.2/microsoft-azd-concurx-windows-arm64.zip" + } + } + }, + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd concurx [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e07a877dbc98e918a85e0da30d2dd6edf53203dccae613c44fa9ee5dd071720" + }, + "entryPoint": "microsoft-azd-concurx-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "75635e244a56a8822ce523fbfb8d448b1ff6c18cbd00f7679535e7bc08c43435" + }, + "entryPoint": "microsoft-azd-concurx-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "35180086ea5b5c0b6fda8490a84dac3f4ab1d81afbf7ee326ee81dc46d28212c" + }, + "entryPoint": "microsoft-azd-concurx-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9d12aafa43c6dc5cfd2343a11b0a5cdfa4cc35ae3cf2fc65103b09a3711592f2" + }, + "entryPoint": "microsoft-azd-concurx-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1d1d49b72a50c15628e3960730be00b4aa70b0a33ce29ecbf586bf7236b617a6" + }, + "entryPoint": "microsoft-azd-concurx-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3ca2b2ec04eac82bcad707030b0763cdd4c8a7b19701bf359b87861e47055f0c" + }, + "entryPoint": "microsoft-azd-concurx-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-concurx_0.1.0/microsoft-azd-concurx-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.finetune", + "namespace": "ai.finetuning", + "displayName": "Foundry Fine Tuning (Preview)", + "description": "Extension for Foundry Fine Tuning. (Preview)", + "versions": [ + { + "version": "0.0.8-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f0df54c64465c910e801ee362b9140aaaa5a2c04deb860e9b0c9b73b16ee2e99" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a928c0fb26cef21e66da3471245927b07f1e652ad7f3779bfbb339f54fb1b17f" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "49e97d289db8fddd0d7e7a19de5056125b48b337d8765422d1a0cf9999176ed8" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f466e84d5b46c3d746a2b44ac823363045bd9cb37a352852bf7cacc8df9f8ba" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3559dba2bf318c606f0045e924ecafd2c9874b4111dc4cc99606d0f0df198e5f" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d14f81b9dec2dfa6dabdb829ec958cae495005248722a4a5d038ac11236eae57" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.8-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.9-preview", + "capabilities": [ + "custom-commands" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "90b18b9e15429b7fe10d6eb0dbe9e882cf95a06e9be3a127657653a4ff6755b3" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7be2843e419c2e7d16f849110c2b659fa5230135a2f52ccd151fbd7e3f3aeb64" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1fbedf42d4bd61f68d62df58f21b62a9a4d500870da0ac90ac55d4c6eb02f11c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d76e9c78bbf453d00f39404ebe5786f351e3394b1ab33e710d2d7f261d61c9bd" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ae99e9336650abcb39fe41621380986cda125dae266d5b976306df182f2c0ef7" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e9ccf8b5a0bde6d4e2fe30a96736c5187bd85ebe4d1f1d9c7aff921a830152f0" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.9-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.10-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10bc56cf745a0df21ab337db0a2aebd5a55c65458afa81ed664cd002f83a032b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "06ba9167f7b1c03675e6e48912bb648b88051ea756e133eda01303e20f0e07ef" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3edbe0e557e4d7ea7f5eec86ce75e70d92c23c78118ec5bdfd54e73587e6ec57" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "da44f050daf9ad24249590ac03cd77439c326d8a62eac90a999fe6d891f2b115" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "549f38ab95351ce6f1087f697fb5e091554bbb91e91bcb6ef062c0fd7d35b038" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8b66caed2ef381a682206385f475af1be7d73084500d089455d7408e2e442987" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.10-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.11-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46750b2bc3cc1cf956dd8a4f485b6405a09f96fe9139a626b9524aef7d5f9fbd" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "17886e9bed1183cc34eee5b572978de6f9a5c9475c909c59ca3ede3b8235fe3a" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a86ffe0ad0e40aac95dc14bb681df34f85d1d89f4eb7f2bf16de94b64c66e65b" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bd4c04e5080a3ebb3dcbff7930ef4dd4ef10e5a6078c8e023059111c6a4d0392" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b201586d99138ec8439f14e72fb30bac320b36e8c9c1c16e28e7f3c5c655bb1d" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1048b8b996101f350538d2a9990adfa967076d19fc8417bc77bbc90a53cc6da6" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.11-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.12-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ff7f95ae6d5c76bccf2bf8163cd6567623c4ed146c7f407861d659f731735fce" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f76f01ac2589a3a093d15b0764cfa76fdc31a07f1f4b275f02747597ebcb4bd5" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f896747ec311826af1f00acaf5817ec66ca4d80f6b50b93ceaf6c335f172cc99" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b6010d393fd8ccc737d76f2f39d16001ded8fd162850af1b04179b1d56283a4" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2ad79ef1095ec218dda38f01360572e36ebaba98da415e2d18fa42cd9681a7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "52d6cfc59a3c5490bf675704b7f3b1693f463ee8474366b91c35f154b0c32df8" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.12-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.14-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65073f9033cf3d49ac3c923c2d4d9db4ec3cb21f7a8c49c65c455db982eeb0" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0ea4ef79e506e99ae62904856738d558a414e0c46172011d16b197641191b288" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9e058d1e6be9b466042fc60de1e2304446078ea3757db9fcb99db9f3b495da3c" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "02eb90b366585a974cccafed6436a0a3f973fe47bd7fd1b9233c8d59da652977" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4a649358724ae6f06d75da91b8393afb6d66390d5e6f9be3a6b228b8b640fc7b" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4bcf1b36b245b60557108e897e6dc08e8df014517da6971f014bc81c6e01c8e2" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.14-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.16-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5f00ab549630eaa4b329a2a1487ce5d05a1dc4b5db8de39bf10894a0ae18a32b" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c68b7625052a4352adc0686dd7feb5754d1fa8f9b09a3eb65c9ce29cf04fe6b" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "286176e9fa3af919950e302971f88bbed737a4a6ac6306f05e998380de78a2d7" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "28896339658f6d0f686faa3739873425d0ceb9b504fc1bc31453a42691d4c95a" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a55fabe4683ec60eabb571985e5a1004792971d72392cf03c75d7ca0ce404040" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f65f11d6b772de036353d4b24ffb2235b83e938775f5256b072406cc9b56cafc" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.16-preview/azure-ai-finetune-windows-arm64.zip" + } + } + }, + { + "version": "0.0.17-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai finetuning [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI fine-tuning project.", + "usage": "azd ai finetuning init" + }, + { + "name": "deploy", + "description": "Deploy AI fine-tuning job to Azure.", + "usage": "azd ai finetuning deploy" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9337e7097479e80d563df018fc8099003d5500d7304c0d7eae238266870a9996" + }, + "entryPoint": "azure-ai-finetune-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "79be23975c148b1cf7918316fd02da63ec87b925485c25189b434be7df36c4bc" + }, + "entryPoint": "azure-ai-finetune-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "330cfd1aa5af8c73d3fdaa86d36d4f0f2c7d072cab8136916a8360f0bcf8d197" + }, + "entryPoint": "azure-ai-finetune-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f40fe397120d965de80cbf3278fb7cce74b816f174e2fc77ea50de97f986d229" + }, + "entryPoint": "azure-ai-finetune-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "12434209e2009ef68d8974eaf1a57926204c084057a0dd418d213cc3c32c73a0" + }, + "entryPoint": "azure-ai-finetune-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fa51bc324fda2672bf863b8d0adb427d734fe266d842b4ba8365c1fa0daf5143" + }, + "entryPoint": "azure-ai-finetune-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-finetune_0.0.17-preview/azure-ai-finetune-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.models", + "namespace": "ai.models", + "displayName": "Foundry Custom Models (Preview)", + "description": "Extension for managing custom models in Azure AI Foundry. (Preview)", + "versions": [ + { + "version": "0.0.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8880a66bfa3a1f4e2bacecb0250c5e1f9123efbe1ee3dff9d0fbdd5b936b789b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6727395151f92024a04fcc6014670825c2acd1f71770206f85538d5d3f2dfc8c" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "584a0182197f8da11500f554b6ff2cd6b7c1fc06871832cdcf6465e7d8a3cf9c" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "346bd40ed1a12273adece0533ba7ccd847e3849ce24130124b644e85b5835c42" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7f2425f5ebe080df17b28d01b77d14805ab72ef1250365086ce464c6d5749bce" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6356178c246cc7db2d9b26ffacb60614581bb2657f61c57d56406bf4999a15e8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.1-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bd712e6c072123ea2232033e79157f70b01449d9dc32c02eae021ead427b794" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f30e0ae33541d857d799b089f9e2a9d86f97ff729fb14d207deb4e468d327af" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a0a64a188ade94a54cbcaa9b785c769076758fee596d44f13428f0955f9756a0" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6e39b71a30715c498a0747ca9fd63f37adfc9bfcb4177d974a160824c989ab" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "392c6b8c2d5d11c3a69d66218f1553010d7fd9334a7324791339cdd7c77a4f5f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f6b74e4eef1fd12d3af0064c9696c4c02f2970477d213ec51c72f7361e2cd24" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.2-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.3-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f2f41da14b974822f8d75aab595ee99577923817b679be587b5b82de238173bb" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3a155a25bd071319312ab21aec60ee4bd74e265131355f50aede525212a95876" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "daeab7a467679f96a2d1cee756ad80d4f311a331318919e7b6e7058924347db7" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8517e796c4bdaa0ea264dda2a47369fca2155a45e7cc38745e723e5a4bd5cbcf" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "597a43f4a1dcb0fc8ea4136736d872f0eb9da33a1abec8eb2c9928941c0c0a50" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2f3af40fd4d877b835252cea9004ecbea6df37ded619ac88179ac731e4301763" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.3-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.4-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models custom create --source ./model.safetensors --name my-model" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models custom list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models custom show --name my-model" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models custom delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4ff833b38bd4f1614b2d1b649c03c3db27f31558aeb006bebf4712b6ebfe37b" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6901bc3563843ba475feb46897e9fcf7a75f84a2cda2e3ce468ad28d2a527bae" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "140975c5153696f820bc36649755922c7893d49c230bbbe2a23eb3372a4043ab" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1476d0b061027f708cf00113ca503cebbdf850c268b7376cfd2936d1bd233a28" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7e95ec6caf91c64b7eb69a809e0d78fe46ea797b6994ca34f4ef78da10ababe4" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a778236b3412163d73574d298d345bd27819a3b3e3985503a7ec4097a135ef97" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.4-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.6-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c4d4cfd3380b1e6ad851bc5c45a522121c73ed3d72151bc6d68be0558780a82e" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "647a2801ade0fdeba43d9af301eb98b093bd146e98689356f745e10cf73e5c47" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b9f92d4c8e8275c099fd36909e2817595c403b0a001ec22803e56d9680d04bc4" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "97f5c17f52a6a10d160d4b5a180186974d17e4a63650ecedc51a118396902708" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ed52b1683bd7550712d70d9b14a5b08c2fff65fabc3548a7c155ebd9a1b0ae0f" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "215b9e07a14aad9b72d56ad7c4b7b00dbf383d78b5bd1411fb98ddd0d6923cc8" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.6-preview/azure-ai-models-windows-arm64.zip" + } + } + }, + { + "version": "0.0.7-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai models [options]", + "examples": [ + { + "name": "init", + "description": "Initialize a new AI models project.", + "usage": "azd ai models init" + }, + { + "name": "create", + "description": "Upload and register a custom model.", + "usage": "azd ai models create --source ./model.safetensors --name my-model --base-model FW-DeepSeek-V3.1" + }, + { + "name": "list", + "description": "List all custom models.", + "usage": "azd ai models list" + }, + { + "name": "show", + "description": "Show details of a custom model.", + "usage": "azd ai models show --name my-model" + }, + { + "name": "update", + "description": "Update description or tags of a custom model.", + "usage": "azd ai models update --name my-model --description \"New description\" --set-tag env=prod" + }, + { + "name": "delete", + "description": "Delete a custom model.", + "usage": "azd ai models delete --name my-model" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78da390157ed64364a87e56fdceac5b61cb8b2f80c4d0ed832eaa657fa238f83" + }, + "entryPoint": "azure-ai-models-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4a73ea7b51a86234b94c4a4c8526c9c14b4c5c48fea1d4ac3381b0d79a4e094a" + }, + "entryPoint": "azure-ai-models-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b4aeb904395436a77d2decf0abd71484bdf93a5be93210bd47c17b8cf8ce2233" + }, + "entryPoint": "azure-ai-models-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "19e6320e04e8e9e8ad59a339ae765aa2d9ce9b7740d0cfae0c36e95043c78350" + }, + "entryPoint": "azure-ai-models-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bf529aa5eab93978d7ed9e489c75e767a3714a7107b9d12ad18adb10f8817ec2" + }, + "entryPoint": "azure-ai-models-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9b9af9e7ab48030f82c7117bf3fd8367715042806ceeff7538aa6cbb5efa24db" + }, + "entryPoint": "azure-ai-models-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-models_0.0.7-preview/azure-ai-models-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.appservice", + "namespace": "appservice", + "displayName": "Azure App Service", + "description": "Extension for managing Azure App Service resources.", + "versions": [ + { + "version": "0.1.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "556e61f1cccb7fe30018c0a8e4bea6a5c2dfeacae280cace3884df14ae5b9757" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "702c687a99fb5465a0ccce2ca5f0827e0da2d8e7a39ff86f1a0361296bb80a47" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2fb4efb9e2dfdbfa9ad1d54483213d38dec19361343eeb75615353a7d93a3448" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69204c40496bff0d6677ab8eb811d20173806a588b8f89572ab38157328c812a" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2306b741af14700cd65cb6efe16adac4050c7c84413c7dd74376c40e952dc1ee" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fc08097662690218d2ab4a42d2bb634b4ec05722fdfaf9f97b30b5b570f5a790" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.0/azure-appservice-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd appservice [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service --src --dst " + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5abda3ef17a4fbcd058e46f5ffc6ab602bf9570cd0a572a53d51754f7a29cdc9" + }, + "entryPoint": "azure-appservice-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "db9a0dcd0805d30d0338a259335db0b98d3b8ebb7eb67bae214e8f3b83536340" + }, + "entryPoint": "azure-appservice-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "46a10b103030b3124e4326f31894ed5872bfca4f95b83a39cd213e019a49d8d8" + }, + "entryPoint": "azure-appservice-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e0dcae29dccc5d8fee4c33656ee7959733b5c6b35e6d4514699452b4757423ac" + }, + "entryPoint": "azure-appservice-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "aeb86c156e482a823d16f347a91b6263b61b74a57720cff79329a76ce044ea86" + }, + "entryPoint": "azure-appservice-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f55c50e17075a1326aa077a37aecd0aa03413239ce277572ebc55d440ed4fa1" + }, + "entryPoint": "azure-appservice-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-appservice_0.1.1/azure-appservice-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "azure.ai.inspector", + "namespace": "ai.inspector", + "displayName": "Foundry Agent Inspector (Beta)", + "description": "Browser-based inspector UI for locally running Foundry agents. (Beta)", + "versions": [ + { + "version": "0.0.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c388f95d8822ecc5f51ddd554f06b846ea9ec7a70d4ab00dd6ac7f1876cddc25" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1c51712823a4bd31c735e39435f3c82fede78593843caa3267d23035f0f7020f" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8955ab5e9fa606f398f0fdc01b0e07974d889711c68d0e4a059f31ba67fd5693" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7aec619864df86971da1479be12c29acbe877f2551e7c4b2c6d74b0dc5cf0431" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "126fe267c3b4845a05344a873c17ad7e5689e18478d05716d26ecc165d257829" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b97e3579ef50cb2458a10add8a635e13f4679fcdfdd39834b3c3dc16e0bc31f" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_0.0.1-preview/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3a3f6550bdfeea2e83c69a65ee899c04970b5810ea2ca605f7b3b530cb6a6841" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "cca17cdbfc807259242ea390eb7f9606a907c84adbfc59c83e818cafa13b9e62" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "f64c28f6e97de7ef1743d51f3b2f1dca4537d4fdcd97f5668ac979928eb82600" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b9e8b2307f40821dde5e294ec010c2af141dcc67bf4e1ec67f2e72775ad78b6d" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "096320484ffc7ea089f0153ddc43c9d1b42ef8d6d603f6afe004689d5826ebed" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b0733c82c6839df55a8f8738ec57675426bf48ff37c311c6321de3139ee5c8dc" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.1/azure-ai-inspector-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai inspector [options]", + "examples": [ + { + "name": "launch", + "description": "Launch the inspector against a local agent on the default agent port (8088), serving the inspector UI on the default inspector port (8087).", + "usage": "azd ai inspector launch" + }, + { + "name": "launch with explicit ports", + "description": "Launch the inspector against a local agent on a custom port and serve the UI on a custom port.", + "usage": "azd ai inspector launch --port 9000 --inspector-port 9001" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00349abfafd970c42048103876cd0d9beee9b65785171a276fc9739bb2db585f" + }, + "entryPoint": "azure-ai-inspector-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "44bd6c40686afbe7cd528ec33367fb59a880e890e978b82417ba3b78eb6f1a9d" + }, + "entryPoint": "azure-ai-inspector-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d03a8047b4ba40b77e20625ec9b5f5ab0f45541b43990a2c46a3f03e5923add1" + }, + "entryPoint": "azure-ai-inspector-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "449190739a5215da09496d1994441407a44816efc7631ab027091ad4126effaa" + }, + "entryPoint": "azure-ai-inspector-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4b6fd1f8fcd08f4c1d06a2d5b735a30e84494211725e022d18a6a7d989a73629" + }, + "entryPoint": "azure-ai-inspector-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "4572fdb982f7d68d8cb61bf3473c7e804a0b9a204d9470593e7dd10a6931b22c" + }, + "entryPoint": "azure-ai-inspector-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-inspector_1.0.0-beta.2/azure-ai-inspector-windows-arm64.zip" + } + } + } + ] + }, + { + "id": "microsoft.foundry", + "displayName": "Microsoft Foundry (Beta)", + "description": "A meta-package, bundling together all of the Microsoft Foundry AZD extensions for easy install. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.25.2", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.connections", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.inspector", + "version": "~0.0.1-preview" + }, + { + "id": "azure.ai.projects", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.routines", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.skills", + "version": "~0.1.0-preview" + }, + { + "id": "azure.ai.toolboxes", + "version": "~0.1.0-preview" + } + ] + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.1", + "usage": "", + "examples": null, + "dependencies": [ + { + "id": "azure.ai.agents", + "version": "~1.0.0-beta.7" + }, + { + "id": "azure.ai.connections", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.inspector", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.projects", + "version": "~1.0.0-beta.3" + }, + { + "id": "azure.ai.routines", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.skills", + "version": "~1.0.0-beta.1" + }, + { + "id": "azure.ai.toolboxes", + "version": "~1.0.0-beta.1" + } + ] + } + ], + "tags": [ + "ai", + "foundry" + ] + }, + { + "id": "azure.ai.connections", + "namespace": "ai.connection", + "displayName": "Foundry Connections (Beta)", + "description": "Manage Microsoft Foundry Connections from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5bbb15af6f33cfb27615f278dafd8b1a9f4892b4a5b350ebb4eba8ec91b9de1f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3f73a211f7cfd0801e6b4e16f13d89ec48a141fd5f07c8bb9a7511565eda6479" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f6aab4b4c60bc8fc6150e7beb2ca6e13e3fd977e57f2bd7afbb756136844bea" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d74941d383957ba8c37cc340e0a0fc10e8e6dfb2bbcd0d47916a5a54b75491fe" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5b929c90d8d47f9bdf9c0d6cdac0772fe6a94930ae5940ae5982687c30b03065" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1b19ed9f9040f34914bbb3a8ed1e472a5ad4663381d4b4a40f81112e881cd334" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.0-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0976a78739040cd6c14f3d7564398ad31611ec6ad77a169853c19abb7a66bf37" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f92de7cf1472dc6a546b6bf59ce42b8c4e62fe553cd304810f88f6aeb751097b" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "58b92265a2d19783901bd5c1eae7f65c13e84c94e30a9f1cb14ff2c85f5b018d" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "458781ccd850985372913bd4398cd3ff67c0115292a23b6d0fc7d1300f8e8394" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "98dc88b5868da649330bdde7ce84d7d674ebd5a4044b75edfcd6556f1b280921" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0b787373481ae7e845246f19f5c08b96c90433f5b8a6db72e6ecc51501df9272" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.1-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "0.1.2-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "379c335983b4d193681572f70b7b62049693be632a1bfdcebd41a2656c865eeb" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "93e07a6bc78ac0a4b08850d6652f673ec136ff3c9b4e854fb9b991e201872129" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6741875f8ccfd33ad121555dd68b8ce51718adf455366c869498fd1356bc78e6" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f34c6778b701895f7cb35069ce285c4866a7a5225f9c002967cd236e266885e6" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "57bfbe8f0b8bfe8adeea31b17ceb6bcd92acedd07b1b21ddaa3698d74b0c1e7f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f4e43d55c7d18bc945ab3397051decf9e2706ce337c462343bd745b9b9a2835a" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_0.1.2-preview/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6ee2560f64aeb2ecc90c806fb31a90fd69cdc5b9f329d7bf9c9ac3971968033e" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "78b7bb4e5b1714fbee095b7f3657fa8128a7aafbd280826983369ba404897c85" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "77cbe6ac426fa857acf07366c8bbf849d2d895322a5b6e0c6ccdae1669b1f2bd" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7118acc566a5f7ddfd5679ae39ae45ab805e3fcf608429be916a38f41da28ab5" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c0925e403dd8be407f6115f0b2df5d8ac8d08375103179ad6afc315f7730dd1f" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f3f855de615f5ab3ee4ec3524fef4af4ea45cfe82b3062765e0abbb3aec94f60" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.1/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "13c7519528ad81f41661591167de2b52a8d7f088030b37f5e838e0dbc3eeef9c" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "08d588ddaf81fe51c5e54fab1df89e130ae58a343f23c71f1afe8eb126cef0a5" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "2cf784aa617dea61402fd2dda2d1f4313311b4f56b007e522e3d656415178e79" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6954134a6ef80f989a10a83f36e479668a4a428defb8cf3dbf24228c09337387" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9474a3f7f0892658dd0b6256842787640f09da28923a14634be0fb0cdfcf8b8e" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "248ec2cc43722f6307baa5787497d3dcd6455feeba1a189fac0843be67ada06b" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.2/azure-ai-connections-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.connection", + "type": "service-target", + "description": "Upserts Foundry connections declared as azure.ai.connection services in azure.yaml" + } + ], + "usage": "azd ai connection [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a42a54a58f746d7f4b9a12393afa18a5a08a3355fffd0e91180b139d9730c83f" + }, + "entryPoint": "azure-ai-connections-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7ede8e6c8787d8a48f3a71193c3414ef3cd1f57315f2f9a4d3e72cd8210e9672" + }, + "entryPoint": "azure-ai-connections-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e07ee36ccfb19660afad8c969db8e877a501e9dad93a8f3869ba0ab4a4cc4490" + }, + "entryPoint": "azure-ai-connections-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "3658e111caeaa77d7b9c42e8304c7f852e1abf5881db028d96e3911708abe4c8" + }, + "entryPoint": "azure-ai-connections-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9056925a09677e354f13c0e02bb9bc0a8e43538da6926c005ba884fa2f931ab2" + }, + "entryPoint": "azure-ai-connections-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0fd9f7f74975878c8db1d213d3e52bdd17843d76ce1dd89c9f6ae9b4597b99f8" + }, + "entryPoint": "azure-ai-connections-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-connections_1.0.0-beta.3/azure-ai-connections-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "connection" + ] + }, + { + "id": "azure.ai.projects", + "namespace": "ai.project", + "displayName": "Foundry Projects (Beta)", + "description": "Manage Microsoft Foundry Project resources from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "05ab0ec11fab528f5e1b0a8dca18106a36cce43fb43fac1042adda480b631a96" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0c5933acfa44010d8b22c5d6aab67004b45966bf1c727faa2243bb79e42709f9" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "dd8adde884d890d014af00305d5809b4b8ac63e7cffa0491ab4a5b0d6ed7d961" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c1f0776f370b944d5e2bc6f598c0a8fe774a2d366435bf67425d422e7f82bba8" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "ab46a77b23df002ec6f966d97291e88118eb0949937aecacc1f910561ac46099" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "530938820b0db2340499c8251d28594a793146e5a0fdc3ba3e21e2eb28caf731" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_0.1.0-preview/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09f1694f36ef38e09c8a8bfcfbd9de2426809d59ffd25018371820f2c9d7ad5f" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6a70243e09373ef47022c18984be692e849e8fb9e237422fcc31e940df922ee4" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "10d6ed22c03a5bcd307cf2e9fb5905f80132910879e8b3a0f3d15adf0897aa83" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f5e84b1570168f2c3d96ee293d6d743e4292c1ec6e7bfd4a6a57aa2c2413b58c" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a73602e109df724066d9ba0cc57c799978c5a2c5eed64de87b4024eccb9e0f22" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "22f55ccd9b3338d8cd20a75643d309136e3ab5cee583694638de8ce1ef5a5bb7" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.1/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b93e6df3fdb9fb7a0bf96739f6d3aeefc64da8e770700f2d436380415121394a" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0264ccedcc703f611db3512eebb462d7c2b23ca19a7cf3765a999d3dd484f70c" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "0079e348224a9c028c7e4026e5cf47a89c0e94b0d1dcd0ed1ed4c4dd5fcea464" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "d11b09fc5b5dbb196181f753a197cd8cfd042ea9d4e2899d795d4e4e77113e81" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "14bed81d4a038cfc8b6612c766efae2b7af4bf7356e3d9aa829230292ebb380e" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "45ba06b1efa449712063d3d2e31a74c9b8e0c568bde37675f6c7d7733365cdcf" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.2/azure-ai-projects-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.1", + "capabilities": [ + "custom-commands", + "lifecycle-events", + "service-target-provider", + "provisioning-provider", + "validation-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.project", + "type": "service-target", + "description": "Owns the azure.ai.project host so azd can walk the Foundry project service in azure.yaml" + }, + { + "name": "microsoft.foundry", + "type": "provisioning-provider", + "description": "Provisions Microsoft Foundry projects from azure.yaml" + } + ], + "usage": "azd ai project [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1617009be6797d8c3506ffd979aecac2394cd5d216a218eee38355b55932ebdd" + }, + "entryPoint": "azure-ai-projects-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7eb31e5a8f396760f30d702001d9a210c6ddd50722eb78876580116c513b37e1" + }, + "entryPoint": "azure-ai-projects-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53e92ae77f346ae98b2c02f78755e741d97ffcab363046187fbc316cc751a2f7" + }, + "entryPoint": "azure-ai-projects-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c3280f411d46efa017e542fac5899251e9a2b73499c9e5e1f26eeb958ce3bfa" + }, + "entryPoint": "azure-ai-projects-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c6443394f044be8a15766f683d914696148d24a6dc88e1f057b390b6e7b4911" + }, + "entryPoint": "azure-ai-projects-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a0dc607626708a7fd6a1c46494746bfc8d84a66acf655f1eb162fcafa7f4f5b0" + }, + "entryPoint": "azure-ai-projects-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-projects_1.0.0-beta.3/azure-ai-projects-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "project" + ] + }, + { + "id": "azure.ai.routines", + "namespace": "ai.routine", + "displayName": "Foundry Routines (Beta)", + "description": "Manage Microsoft Foundry Routines from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "104a6c37b12dbf9df0aa12f8a6d6e65ac3aa6e4e7620008a3396c00a476564bf" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "9807a195ad454869ef7241dc5ee604001d5cfa866b63fc2add089c8f8ac8aa27" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00357f3f43e9c560e52b4ca4f752d02d07ae7ca048eeb288f3f61e3517f5cac4" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be7d6e43a7fb5ebb04babaa10caf8a40318210a241bfe2ed7d480323b05bda4f" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "991bac0c60820687da64ad08d4da7a055afd159164baab237961b878ef779b3e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fcc69e80d50a77eb737638bbed06c315bb17e2b5e108925a7bd12adb08baf0a1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_0.1.0-preview/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "48b7eb6ac648fa955f08a3f70d1fae96289a18a39e1535d282029df639a27188" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "385b0e0b3682e6903929f7f8bdf430b2c4a9ed15c61dfea332c0a50afb7c7b7d" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b208caa652e492698bba87743a9eabb6d27ecd17120518018dd04eea0c5dcb40" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2c33a81a1f74c2aa1c58166bcde50dc99df9a61c953be80df43d08341c4b51f1" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "00e381eb9bdc1367b633884258c2aae874cf51698776094858963973394addfb" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "be4af31db97a694a68feda347cd0bff1f2552d98a1f18298b9ea5e1089b86f32" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.1/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c056df668eb98dc1e9f132ff054a607a203974d956930c174758f344ac1703d1" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7e3b5c28a57d415af6915651cb033e26ce7235d953782353c3df6ee40cc4df4b" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c30b58c07e60f46353c1f4023bbcc18cf6c89f2bcea1a01b7c54988420737c8d" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e7cef5f09d65ba992cef9c559e0749f5747b4c4b47a16ec10785f30fd813c775" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d745b1485be738b8bbe9e0efb028543f8f9e0dee46664ee3d650d5f8b4e7dd8e" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "84c77a3b2cf8f3672ffa960716f543dc2f9ecb7a7f6222eb4aa19a293be51511" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.2/azure-ai-routines-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.routine", + "type": "service-target", + "description": "Upserts Foundry routines declared as azure.ai.routine services in azure.yaml" + } + ], + "usage": "azd ai routine [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a61b03858587e97c4eb72e108542a95066ccc5bf51b740b8f64392714bec81ea" + }, + "entryPoint": "azure-ai-routines-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "2df3af97042a57153d77f3e278ddc12c04dd08d03e7ae6bef6b3aebd99216409" + }, + "entryPoint": "azure-ai-routines-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "80b362b3a5cc01514b38af373e21d3e3d2f90edc87364d976173a687e08bec0c" + }, + "entryPoint": "azure-ai-routines-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8ab5af0c8bf5931b3869f7d7d57ccfb6cd8588cea9b45a4232abc9dd6b512b43" + }, + "entryPoint": "azure-ai-routines-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bbe562e377c547cdc30d0ecd7eb792e2bb22aa968ef9ff78974c8c9fa7ff76c8" + }, + "entryPoint": "azure-ai-routines-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c58a248ff67bce7168e79f301501403d57e84c68e9a91756825d1d5e719e4db1" + }, + "entryPoint": "azure-ai-routines-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-routines_1.0.0-beta.3/azure-ai-routines-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "routine" + ] + }, + { + "id": "azure.ai.skills", + "namespace": "ai.skill", + "displayName": "Foundry skills (Beta)", + "description": "Manage Microsoft Foundry skills (reusable agent behavioral guidelines) from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8f804b02a9bea8e4574bbba9115d9e7f987e2cf1d6ff326632fe4cf6ab805c32" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "8bcce6fef9d02f0c41d66bb1210855adc8dcb60e42a1f72eabf554451145d1a6" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "bc2c5e8007abb97602f0dbe9b7abce31c829b58cfae94be2ae3920c64720ff62" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ec9435f10028cdc3527c077f3c1fcd13ba1691e66f70c3345831b6e381e49fa2" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "5e3dc4b30aef457f98d5372ed898b3e670bac4649d823673f382fdf79db5562c" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "7c57b9d78626c838e4d47861208976994c125b76a1827c0795c9cce198544064" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.0-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "requiredAzdVersion": ">1.23.13", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "65b7aaf01e2383db13b363634fc32935e844316c3b293907eb2ba4fb1a0593b6" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fad46b1f02b3bdbbe270f4ef40bbaecba893854b1ae45bf7e886347cb5ee1376" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "19dc1283bb56f121529776bb496645a2e33f00c8ae55ddc883cbb56a0264cb36" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1f7185df316798d3355dfea090ee7ad5ed688ea176de256258eab458ed5c50cd" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "943c80bca4c61245b17312d0d3bea89b38f210c7b76abdfe7fd505c75028069f" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "69881178bc433cdfe16c83dac9f0e7657b760c7f02488d3284d348a3854987b6" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_0.1.1-preview/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "78cb172e59f3593b5406d8f8a05d1d03603256e26d0476c704862d7de7891650" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6941da75dbce6f515b6375a5c02e5a188350b0ffd39a53d24360652ebce0fd24" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "4ba70b8e4c85b48bcf099a75ead9c2d6b26755325ca24b2d3458a1b0947aedda" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "11761481e5e8d1d1b9959278b844175a744e1b79ed343a264b9019ccf80f11d5" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e1b5e4994b8f3e81caea4ea9b775a1da2509c88b477935734113d1d0827ba99" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "b6939e50863d18a834e3c69a8818eebf68e9a9f5752442b7ec016ed1d86070ea" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.1/azure-ai-skills-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.skill", + "type": "service-target", + "description": "Upserts Foundry skills declared as azure.ai.skill services in azure.yaml" + } + ], + "usage": "azd ai skill [options]", + "examples": [ + { + "name": "list", + "description": "List skills in the current Foundry project.", + "usage": "azd ai skill list" + }, + { + "name": "create", + "description": "Create a skill from a SKILL.md file.", + "usage": "azd ai skill create my-skill --file ./SKILL.md" + }, + { + "name": "download", + "description": "Download and extract a skill into ./.agents/skills/.", + "usage": "azd ai skill download my-skill" + } + ], + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d240ce6af7a65f53a85907109cea295923f0efdbf035756b3eea07c8e51043ff" + }, + "entryPoint": "azure-ai-skills-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "aebcfc163a2a83f51dd714bd47ab878a68d46d4ffe823b95b5f886823dbeb540" + }, + "entryPoint": "azure-ai-skills-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6c8e50c0cc43db92a18483cb58bb4d3eb8744d6b9972d806591f6eb5c149fdd7" + }, + "entryPoint": "azure-ai-skills-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "319d265f95c2aa09e643e02fd8a762703221b7ce02a3232ff53ab68872a82e52" + }, + "entryPoint": "azure-ai-skills-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "e2f8aa18dc971d003286169999c781722def7614e4f90c66500bec8b86a62c1b" + }, + "entryPoint": "azure-ai-skills-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "230bbf7b136fcf46dc262d2c6290d602eac086cf4562d93e8bac12a83eeec7d2" + }, + "entryPoint": "azure-ai-skills-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-skills_1.0.0-beta.2/azure-ai-skills-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "skill" + ] + }, + { + "id": "azure.ai.toolboxes", + "namespace": "ai.toolbox", + "displayName": "Foundry Toolboxes (Beta)", + "description": "Manage Microsoft Foundry Toolboxes from your terminal. (Beta)", + "versions": [ + { + "version": "0.1.0-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "1609d3550e18806f381003e8c5869e517e750b5434571916dd2de44cd2e9fbdd" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a14efaa002a68498dead6e6b3834e30b7a0a1c7a7796ce9f8987d7199b57e3ba" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "8734bbb5d01a6fa15e9dd4b3b827469b9a285343bc0ba0db208b15badebc4e08" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "0376494263e1bcc1723cbfb79542c1c63870dd2ea447d5de551472293258e105" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6d67561df8233e1dd520d99ad908711f801a4dd0ce518a68936b0219ea817814" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "1a65ae168b0405a86d7435af84b2dd6d55139cd985e9cc7509d38f2462d4315a" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.0-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "0.1.1-preview", + "capabilities": [ + "custom-commands", + "metadata" + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a7bbd3ffc3bc76031730c843f67c83d3f9f859e663065e081cb3b0fa6d015d5f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "ce84c47b2cd2c03d684ab34ccb1a642109653c467c179164606bf37eec6cf26c" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d28f2e307115e8a6a4af149abd973e301a76bf6a79541b7777fdd106a407d032" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "f6845078710671ccd7f6cab96c32024bd48d1ae0072fb2ca0612aae8dcb4c3d5" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "09071a9389dcc849b662e0f6685a32eb0c3275259fc7a27f6541df68c5d9cf5f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "772ad814cccb2388278542b7280dd670097b377fe0a677faad8564adff194441" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_0.1.1-preview/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.1", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "7659e18ac4563d4fb031aef321bff58fa7bc793a20f4c8f0eeb8bc03772544e5" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e2c8d8d55c7b4515a7ef1b9697a47a4d63ba950b7368603b0a234d2e51e0c26f" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "a302497a8e56656bff3497fd7a62e15caa6afda398df9f0b6b9883edae77e671" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "c419817347c5c7edc937a286804d3cb0fbc84aa9888954b8306c095a6ca2558b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "d25149bee577e927c9687cf0cf99b657a3a76324101273eda618905a55e4bbbe" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "fea4d18597ee88f996a6061cf18b9f8e413b4debf163fe0ae8de5dbc2d2cdc63" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.1/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.2", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6e4210a683dfd0bbd00ef0c4ce1fe433ec59390de7b69a8902ee2fcb080ae11d" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "a805c24bebfb1a0f09606efff8f5770c23af9a0b78e8e5055075bb08f73b2b94" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "209d4a62ab8a9f44eabba5c6d1a13fa885a1c2644128ab442935602f4f041141" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "650928d065b486179828c4fc4c8dd67890ebf5010f9a4726a26c79bcf7edccde" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "3c7103983de5ec47bb293ddad3ea67a6bd32081eb398406fa96f0a6d6de8e5f6" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "e8224e29d55ab2d74b758aa81feed8e334f8f3f8774c3796d62ce1896856060d" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.2/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.3", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "c72f2364fc36f1302ed985b78646ae13f466ea79b2cfc3ec494c15a4cbc28ca6" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "89cdbaea7e44ee96c3f666a2c70f5b7f1918f9bb18899b9756bf35a584f42ec3" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "9bff025e857694e1017251577ee8aa73a35624dcfd0629d420cc7e7a067c7065" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "795ad144894142aa3625f462ee76e8a425ad80220a8c929efb6eaabc7f177887" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "53cecc106285c5a535846a2e29732ae5cd439e876e7e57546a5b76cf9f0346a3" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "96d4db3874e02c538e42ea83259dae51fead85cfe6b844f793245b53aab492fe" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.3/azure-ai-toolboxes-windows-arm64.zip" + } + } + }, + { + "version": "1.0.0-beta.4", + "requiredAzdVersion": ">=1.27.0", + "capabilities": [ + "custom-commands", + "service-target-provider", + "metadata" + ], + "providers": [ + { + "name": "azure.ai.toolbox", + "type": "service-target", + "description": "Upserts Foundry toolboxes declared as azure.ai.toolbox services in azure.yaml" + } + ], + "usage": "azd ai toolbox [options]", + "examples": null, + "artifacts": { + "darwin/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "b48f837f11260112236b18691f432ebf5ac1f1dd9b6e63214031d3c01a8235c0" + }, + "entryPoint": "azure-ai-toolboxes-darwin-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-amd64.zip" + }, + "darwin/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "6bf16ae06048bb13484e35670395c2e1bac59332ddfdac2c25cab373d7426fa8" + }, + "entryPoint": "azure-ai-toolboxes-darwin-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-darwin-arm64.zip" + }, + "linux/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "6cd9e7ef35f0cc6e5496871ebbea64f51c34bf3ed33fd3822d6611b4c8685435" + }, + "entryPoint": "azure-ai-toolboxes-linux-amd64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-amd64.tar.gz" + }, + "linux/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "bb2b9fb65b7f9d5725402553ac6ef6d8d8c646241612353575f3d17db496b27b" + }, + "entryPoint": "azure-ai-toolboxes-linux-arm64", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-linux-arm64.tar.gz" + }, + "windows/amd64": { + "checksum": { + "algorithm": "sha256", + "value": "beee2ccd845b64b6319173dd19284e3c2259c1c579887a3d8937a6988cc1827f" + }, + "entryPoint": "azure-ai-toolboxes-windows-amd64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-amd64.zip" + }, + "windows/arm64": { + "checksum": { + "algorithm": "sha256", + "value": "918c6cfe51d3a430ab24220d2831da9415d38b4159935f0a4544b16bf54f7eaa" + }, + "entryPoint": "azure-ai-toolboxes-windows-arm64.exe", + "url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-azure-ai-toolboxes_1.0.0-beta.4/azure-ai-toolboxes-windows-arm64.zip" + } + } + } + ], + "tags": [ + "ai", + "toolbox" + ] + } + ] + } + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 + Content-Length: + - "415965" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + Content-Type: + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin + Date: + - Fri, 24 Jul 2026 18:03:16 GMT + Etag: + - W/"8ddee58bb0a47628bf39be132d7e2bbb031082a04030f2bcbaffad1781fef567" + Expires: + - Fri, 24 Jul 2026 18:08:16 GMT + Source-Age: + - "295" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "4" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - 5696705a7c56314a8a59dd1d51a17a5e9eda5fe2 + X-Frame-Options: + - deny + X-Github-Request-Id: + - FF5E:3131F3:A1690:CD5B2:6A63A308 + X-Served-By: + - cache-bfi-krnt7300089-BFI + X-Timer: + - S1784916197.609861,VS0,VE0 + X-Xss-Protection: + - 1; mode=block + status: 200 OK + code: 200 + duration: 11.1032ms +--- +env_name: azdtest-wf91d1a +subscription_id: 4d042dc6-fe17-4698-a23f-ec6a8d1e98f4 +time: "1784915868" diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/azure.yaml b/cli/azd/test/functional/testdata/samples/containerfuncapp/azure.yaml new file mode 100644 index 00000000000..eb89839e1a5 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/azure.yaml @@ -0,0 +1,10 @@ +# yaml-language-server: $schema=../../../../../../../schemas/v1.0/azure.yaml.json + +name: container-function +services: + func: + project: src/function + host: function + language: js + docker: + path: ./Dockerfile diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.bicep b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.bicep new file mode 100644 index 00000000000..4239720ecf5 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.bicep @@ -0,0 +1,37 @@ +targetScope = 'subscription' + +@minLength(1) +@maxLength(64) +@description('Name of the azd environment.') +param environmentName string + +@description('Primary location for all resources.') +param location string + +@description('Object ID of the user or service principal running azd.') +param principalId string + +var tags = { + 'azd-env-name': environmentName +} + +resource resourceGroup 'Microsoft.Resources/resourceGroups@2024-03-01' = { + name: 'rg-${environmentName}' + location: location + tags: tags +} + +module resources 'resources.bicep' = { + name: 'resources' + scope: resourceGroup + params: { + environmentName: environmentName + location: location + principalId: principalId + tags: tags + } +} + +output AZURE_CONTAINER_REGISTRY_ENDPOINT string = resources.outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT +output AZURE_CONTAINER_REGISTRY_NAME string = resources.outputs.AZURE_CONTAINER_REGISTRY_NAME +output AZURE_FUNCTION_URI string = resources.outputs.AZURE_FUNCTION_URI diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.parameters.json b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.parameters.json new file mode 100644 index 00000000000..c8d345388a0 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/main.parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "environmentName": { + "value": "${AZURE_ENV_NAME}" + }, + "location": { + "value": "${AZURE_LOCATION}" + }, + "principalId": { + "value": "${AZURE_PRINCIPAL_ID}" + } + } +} diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/resources.bicep b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/resources.bicep new file mode 100644 index 00000000000..97c5cfd52a4 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/infra/resources.bicep @@ -0,0 +1,124 @@ +@description('Name of the azd environment.') +param environmentName string + +@description('Location for all resources.') +param location string = resourceGroup().location + +@description('Object ID of the user or service principal running azd.') +param principalId string + +@description('Tags applied to all resources.') +param tags object = {} + +var resourceToken = toLower(uniqueString(subscription().id, environmentName, location)) +var acrPullRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + '7f951dda-4ed3-4680-a7ca-43fe172d538d' +) +var acrPushRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + '8311e382-0749-4cb8-b61a-304f252e45ec' +) + +resource storage 'Microsoft.Storage/storageAccounts@2023-05-01' = { + name: 'st${resourceToken}' + location: location + tags: tags + sku: { + name: 'Standard_LRS' + } + kind: 'StorageV2' + properties: { + allowBlobPublicAccess: false + minimumTlsVersion: 'TLS1_2' + } +} + +resource registry 'Microsoft.ContainerRegistry/registries@2023-07-01' = { + name: 'acr${resourceToken}' + location: location + tags: tags + sku: { + name: 'Basic' + } + properties: { + adminUserEnabled: false + } +} + +resource plan 'Microsoft.Web/serverfarms@2023-12-01' = { + name: 'plan-${resourceToken}' + location: location + tags: tags + kind: 'linux' + sku: { + name: 'EP1' + tier: 'ElasticPremium' + } + properties: { + reserved: true + } +} + +resource functionApp 'Microsoft.Web/sites@2023-12-01' = { + name: 'func-${resourceToken}' + location: location + tags: union(tags, { + 'azd-service-name': 'func' + }) + kind: 'functionapp,linux,container' + identity: { + type: 'SystemAssigned' + } + properties: { + serverFarmId: plan.id + httpsOnly: true + siteConfig: { + linuxFxVersion: 'DOCKER|${registry.properties.loginServer}/placeholder:latest' + acrUseManagedIdentityCreds: true + ftpsState: 'Disabled' + minTlsVersion: '1.2' + appSettings: [ + { + name: 'FUNCTIONS_EXTENSION_VERSION' + value: '~4' + } + { + name: 'FUNCTIONS_WORKER_RUNTIME' + value: 'node' + } + { + name: 'AzureWebJobsStorage' + value: 'DefaultEndpointsProtocol=https;AccountName=${storage.name};AccountKey=${storage.listKeys().keys[0].value};EndpointSuffix=${environment().suffixes.storage}' + } + { + name: 'WEBSITES_ENABLE_APP_SERVICE_STORAGE' + value: 'false' + } + ] + } + } +} + +resource functionAcrPull 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(registry.id, functionApp.id, acrPullRoleId) + scope: registry + properties: { + principalId: functionApp.identity.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: acrPullRoleId + } +} + +resource deployerAcrPush 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(registry.id, principalId, acrPushRoleId) + scope: registry + properties: { + principalId: principalId + roleDefinitionId: acrPushRoleId + } +} + +output AZURE_CONTAINER_REGISTRY_ENDPOINT string = registry.properties.loginServer +output AZURE_CONTAINER_REGISTRY_NAME string = registry.name +output AZURE_FUNCTION_URI string = 'https://${functionApp.properties.defaultHostName}' diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/.dockerignore b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/.dockerignore new file mode 100644 index 00000000000..93f13619916 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/.dockerignore @@ -0,0 +1,2 @@ +node_modules +npm-debug.log diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/Dockerfile b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/Dockerfile new file mode 100644 index 00000000000..1c106267cff --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/Dockerfile @@ -0,0 +1,11 @@ +FROM mcr.microsoft.com/azure-functions/node:4-node22 + +ENV AzureWebJobsScriptRoot=/home/site/wwwroot \ + AzureFunctionsJobHost__Logging__Console__IsEnabled=true + +WORKDIR /home/site/wwwroot + +COPY package.json package-lock.json ./ +RUN npm ci --omit=dev + +COPY . . diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/host.json b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/host.json new file mode 100644 index 00000000000..369b5be8424 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/host.json @@ -0,0 +1,11 @@ +{ + "version": "2.0", + "logging": { + "applicationInsights": { + "samplingSettings": { + "isEnabled": true, + "excludedTypes": "Request" + } + } + } +} diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package-lock.json b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package-lock.json new file mode 100644 index 00000000000..4d983e6ec8f --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package-lock.json @@ -0,0 +1,46 @@ +{ + "name": "container-function", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "container-function", + "version": "1.0.0", + "dependencies": { + "@azure/functions": "^4.7.2" + } + }, + "node_modules/@azure/functions": { + "version": "4.16.2", + "resolved": "https://registry.npmjs.org/@azure/functions/-/functions-4.16.2.tgz", + "integrity": "sha512-6uq0Z7e3njy8fHpgCVIJWDtbkZz+BYXc6L8fQjisf8+hPdnauM5yZ70j9YC8xas6zvL1dFA+EfLuZcNYyuWLTg==", + "license": "MIT", + "dependencies": { + "@azure/functions-extensions-base": "0.3.0", + "cookie": "^0.7.0" + }, + "engines": { + "node": ">=20.0" + } + }, + "node_modules/@azure/functions-extensions-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@azure/functions-extensions-base/-/functions-extensions-base-0.3.0.tgz", + "integrity": "sha512-Cux0hLu5ZXlC/Kb+yvJVhRLIdkfFwui2HeT5oGZL00r/GCUUkhGTzRfZUjRN4Bq729mPv3okPucz2z7SMQLStA==", + "license": "MIT", + "engines": { + "node": ">=18.0" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + } + } +} diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package.json b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package.json new file mode 100644 index 00000000000..614a48ecd56 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/package.json @@ -0,0 +1,9 @@ +{ + "name": "container-function", + "version": "1.0.0", + "private": true, + "main": "src/functions/*.js", + "dependencies": { + "@azure/functions": "^4.7.2" + } +} diff --git a/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/src/functions/hello.js b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/src/functions/hello.js new file mode 100644 index 00000000000..8bbbe16a8c7 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/containerfuncapp/src/function/src/functions/hello.js @@ -0,0 +1,14 @@ +const { app } = require("@azure/functions"); + +app.http("hello", { + methods: ["GET"], + authLevel: "anonymous", + route: "hello", + handler: async (request, context) => { + context.log(`Request received from ${request.url}`); + + return { + body: "Hello, `azd`." + }; + } +}); diff --git a/cli/azd/test/functional/up_test.go b/cli/azd/test/functional/up_test.go index 4fc808c2aeb..73f9ee1eb90 100644 --- a/cli/azd/test/functional/up_test.go +++ b/cli/azd/test/functional/up_test.go @@ -232,6 +232,84 @@ func Test_CLI_Up_Down_FuncApp(t *testing.T) { t.Logf("Done\n") } +func Test_CLI_Up_Down_ContainerFuncApp(t *testing.T) { + t.Parallel() + + if ciOS := os.Getenv("AZURE_DEV_CI_OS"); ciOS != "" && ciOS != "lin" { + t.Skip("Skipping due to docker limitations for non-linux systems on CI") + } + + ctx, cancel := newTestContext(t) + defer cancel() + + dir := tempDirWithDiagnostics(t) + t.Logf("DIR: %s", dir) + + session := recording.Start(t) + + envName := randomOrStoredEnvName(session) + t.Logf("AZURE_ENV_NAME: %s", envName) + + cli := azdcli.NewCLI(t, azdcli.WithSession(session)) + cli.WorkingDirectory = dir + cli.Env = append(cli.Env, os.Environ()...) + dockerConfigDir := filepath.Join(dir, ".docker") + require.NoError(t, os.MkdirAll(dockerConfigDir, 0o700)) + cli.Env = append(cli.Env, + "AZURE_LOCATION=eastus2", + "DOCKER_CONFIG="+dockerConfigDir, + ) + + defer cleanupDeployments(ctx, t, cli, session, envName) + cleanupResourceGroup := true + defer func() { + if cleanupResourceGroup { + cleanupRg(ctx, t, cli, session, "rg-"+envName) + } + }() + + err := copySample(dir, "containerfuncapp") + require.NoError(t, err, "failed expanding sample") + + _, err = cli.RunCommandWithStdIn(ctx, stdinForInit(envName), "init") + require.NoError(t, err) + + t.Logf("Starting infra create\n") + _, err = cli.RunCommandWithStdIn(ctx, stdinForProvision(), "provision", "--cwd", dir) + require.NoError(t, err) + + t.Logf("Starting container Function deploy\n") + _, err = cli.RunCommand(ctx, "deploy", "--cwd", dir) + require.NoError(t, err) + + env, err := godotenv.Read(filepath.Join(dir, azdcontext.EnvironmentDirectoryName, envName, ".env")) + require.NoError(t, err) + + funcURI, has := env["AZURE_FUNCTION_URI"] + require.True(t, has, "AZURE_FUNCTION_URI should be in environment after deploy") + url := fmt.Sprintf("%s/api/hello", funcURI) + + if session == nil { + err = probeServiceHealth( + t, ctx, http.DefaultClient, retry.NewConstant(5*time.Second), url, expectedTestAppResponse) + } else { + subscriptionID, has := env[environment.SubscriptionIdEnvVarName] + require.True(t, has, "AZURE_SUBSCRIPTION_ID should be in environment after deploy") + session.Variables[recording.SubscriptionIdKey] = subscriptionID + + err = probeServiceHealth( + t, ctx, session.ProxyClient, retry.NewConstant(1*time.Millisecond), url, expectedTestAppResponse) + } + require.NoError(t, err) + + t.Logf("Starting infra delete\n") + _, err = cli.RunCommand(ctx, "down", "--cwd", dir, "--force", "--purge") + if err == nil { + cleanupResourceGroup = false + } + require.NoError(t, err) +} + func Test_CLI_Up_Down_GoFuncApp(t *testing.T) { t.Parallel() ctx, cancel := newTestContext(t) diff --git a/cli/azd/test/recording/sanitize.go b/cli/azd/test/recording/sanitize.go index da58b4cb9d5..576ca8da1d9 100644 --- a/cli/azd/test/recording/sanitize.go +++ b/cli/azd/test/recording/sanitize.go @@ -136,12 +136,12 @@ func sanitizeContainerRegistryListLogSasUrl(i *cassette.Interaction) error { } func sanitizeContainerAppUpdate(i *cassette.Interaction) error { - if i.Request.Method == "PATCH" || i.Request.Method == "POST" && + if (i.Request.Method == "PATCH" || i.Request.Method == "POST") && // TODO: Pull this from config i.Request.Host == "management.azure.com" && strings.Contains(i.Request.URL, "/Microsoft.App/containerApps/") { - split := strings.Split(i.Request.URL, "/Microsoft.App/containerApps/") - if strings.Contains(split[1], "/") { + _, resourcePath, found := strings.Cut(i.Request.URL, "/Microsoft.App/containerApps/") + if !found || strings.Contains(resourcePath, "/") { // This is a containerApps sub-resource level operation return nil } diff --git a/cli/azd/test/recording/sanitize_test.go b/cli/azd/test/recording/sanitize_test.go new file mode 100644 index 00000000000..4d6c252ed6c --- /dev/null +++ b/cli/azd/test/recording/sanitize_test.go @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package recording + +import ( + "encoding/json" + "testing" + + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v3" + "github.com/stretchr/testify/require" + "gopkg.in/dnaeon/go-vcr.v3/cassette" +) + +func TestSanitizeContainerAppUpdate_IgnoresOtherPatchRequests(t *testing.T) { + interaction := &cassette.Interaction{ + Request: cassette.Request{ + Method: "PATCH", + Host: "management.azure.com", + URL: "https://management.azure.com/subscriptions/sub/resourceGroups/rg/providers/" + + "Microsoft.Web/sites/app?api-version=2023-12-01", + Body: `{"properties":{"siteConfig":{"linuxFxVersion":"DOCKER|registry/image:tag"}}}`, + }, + } + originalBody := interaction.Request.Body + + require.NoError(t, sanitizeContainerAppUpdate(interaction)) + require.Equal(t, originalBody, interaction.Request.Body) +} + +func TestSanitizeContainerAppUpdate_SanitizesSecrets(t *testing.T) { + interaction := &cassette.Interaction{ + Request: cassette.Request{ + Method: "PATCH", + Host: "management.azure.com", + URL: "https://management.azure.com/subscriptions/sub/resourceGroups/rg/providers/" + + "Microsoft.App/containerApps/app?api-version=2024-03-01", + Body: `{"properties":{"configuration":{"secrets":[{"name":"secret","value":"sensitive"}]}}}`, + }, + } + + require.NoError(t, sanitizeContainerAppUpdate(interaction)) + + var app armappcontainers.ContainerApp + require.NoError(t, json.Unmarshal([]byte(interaction.Request.Body), &app)) + require.NotNil(t, app.Properties) + require.NotNil(t, app.Properties.Configuration) + require.Len(t, app.Properties.Configuration.Secrets, 1) + require.Equal(t, "SANITIZED", *app.Properties.Configuration.Secrets[0].Value) +} diff --git a/docs/reference/azure-yaml-schema.md b/docs/reference/azure-yaml-schema.md index 4d6c77efcbe..8803ebccd11 100644 --- a/docs/reference/azure-yaml-schema.md +++ b/docs/reference/azure-yaml-schema.md @@ -56,7 +56,7 @@ services: | `apiVersion` | string | API version for the hosting target | | `env` | map | Environment variables passed to the service | | `uses` | list | Service dependencies | -| `remoteBuild` | boolean | Enable remote build (e.g., for Azure Functions) | +| `remoteBuild` | boolean | Enable remote build for code-based Azure Functions | ## Hooks @@ -106,6 +106,29 @@ services: path: ./Dockerfile ``` +### Function App (`host: function`) + +Function Apps support code and container deployment: + +- **Zip deploy** (default): When no container configuration is present, azd builds the Function project, creates a zip archive, and deploys it through the Function App deployment API. The top-level `remoteBuild` property applies only to this mode. +- **Container deploy**: Configure `language: docker`, set `docker.path` for a non-Docker language, or provide a pre-built `image`. azd builds or resolves the image, publishes it to ACR when needed, and updates the Function App's `linuxFxVersion`. + +Container-based Function infrastructure must configure a Linux Function App, an initial `DOCKER|` image reference, and registry pull access before deployment. These settings remain the responsibility of Bicep or Terraform. If the provisioned Function App and the service disagree about the deployment mode, azd fails before attempting an incompatible upload and identifies the configuration mismatch. + +Unlike App Service, Function Apps always deploy to the main site. Deployment slots are not part of the Function App workflow, so `AZD_DEPLOY_{SERVICE}_SLOT_NAME` has no effect and azd never prompts for a slot. + +Example TypeScript container deployment: + +```yaml +services: + function: + project: ./src/function + language: ts + host: function + docker: + path: ./Dockerfile +``` + ## See Also - [azure.yaml JSON Schema](../../schemas/) — Machine-readable schema definition diff --git a/schemas/alpha/azure.yaml.json b/schemas/alpha/azure.yaml.json index 398df6e49d7..9ae1137c180 100644 --- a/schemas/alpha/azure.yaml.json +++ b/schemas/alpha/azure.yaml.json @@ -562,10 +562,64 @@ } }, { - "comment": "Traditional hosts (non-container only) - require project, disable container-specific properties", + "comment": "Function host - supports code or container deployment from project or image", "if": { "properties": { - "host": { "enum": ["function", "springapp", "staticwebapp"] } + "host": { "const": "function" } + } + }, + "then": { + "anyOf": [ + { + "required": ["image"], + "not": { "required": ["project"] }, + "properties": { + "language": { "const": "docker" }, + "remoteBuild": false + } + }, + { + "required": ["project"], + "not": { "required": ["image"] } + } + ], + "allOf": [ + { + "if": { + "anyOf": [ + { + "required": ["language"], + "properties": { + "language": { "const": "docker" } + } + }, + { + "required": ["docker"], + "properties": { + "docker": { "required": ["path"] } + } + } + ] + }, + "then": { + "properties": { + "remoteBuild": false + } + } + } + ], + "properties": { + "k8s": false, + "apiVersion": false, + "env": false + } + } + }, + { + "comment": "Traditional non-container hosts - require project and disable container-specific properties", + "if": { + "properties": { + "host": { "enum": ["springapp", "staticwebapp"] } } }, "then": { diff --git a/schemas/v1.0/azure.yaml.json b/schemas/v1.0/azure.yaml.json index fdeea9980ea..b1a45274cb4 100644 --- a/schemas/v1.0/azure.yaml.json +++ b/schemas/v1.0/azure.yaml.json @@ -522,10 +522,64 @@ } }, { - "comment": "Traditional hosts (non-container only) - require project, disable container-specific properties", + "comment": "Function host - supports code or container deployment from project or image", "if": { "properties": { - "host": { "enum": ["function", "springapp", "staticwebapp"] } + "host": { "const": "function" } + } + }, + "then": { + "anyOf": [ + { + "required": ["image"], + "not": { "required": ["project"] }, + "properties": { + "language": { "const": "docker" }, + "remoteBuild": false + } + }, + { + "required": ["project"], + "not": { "required": ["image"] } + } + ], + "allOf": [ + { + "if": { + "anyOf": [ + { + "required": ["language"], + "properties": { + "language": { "const": "docker" } + } + }, + { + "required": ["docker"], + "properties": { + "docker": { "required": ["path"] } + } + } + ] + }, + "then": { + "properties": { + "remoteBuild": false + } + } + } + ], + "properties": { + "k8s": false, + "apiVersion": false, + "env": false + } + } + }, + { + "comment": "Traditional non-container hosts - require project and disable container-specific properties", + "if": { + "properties": { + "host": { "enum": ["springapp", "staticwebapp"] } } }, "then": {