diff --git a/cli/azd/docs/environment-variables.md b/cli/azd/docs/environment-variables.md index f85fcdc540f..0aa701fa363 100644 --- a/cli/azd/docs/environment-variables.md +++ b/cli/azd/docs/environment-variables.md @@ -51,6 +51,7 @@ integration. | `AZD_ALLOW_NON_EMPTY_FOLDER` | If set, allows `azd init` to run in a non-empty directory without prompting. | | `AZD_BUILDER_IMAGE` | The builder docker image used to perform Dockerfile-less builds. | | `AZD_DEPLOY_TIMEOUT` | Timeout for deployment operations, parsed as an integer number of seconds (for example, `1200`). Defaults to `1200` seconds (20 minutes). | +| `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. | ## Extension Variables diff --git a/cli/azd/extensions/azure.appservice/internal/cmd/swap.go b/cli/azd/extensions/azure.appservice/internal/cmd/swap.go index 0d0a3aac3fd..b92b0c9ca87 100644 --- a/cli/azd/extensions/azure.appservice/internal/cmd/swap.go +++ b/cli/azd/extensions/azure.appservice/internal/cmd/swap.go @@ -38,15 +38,15 @@ func newSwapCommand(rootFlags rootFlagsDefinition) *cobra.Command { This command allows you to swap the content between two deployment slots, or between a slot and the production environment. -Use @main to refer to the production slot.`, +Use "production" to refer to the main app (production slot).`, RunE: func(cmd *cobra.Command, args []string) error { return runSwap(cmd.Context(), flags, rootFlags) }, } cmd.Flags().StringVar(&flags.service, "service", "", "The name of the service to swap slots for.") - cmd.Flags().StringVar(&flags.src, "src", "", "The source slot name. Use @main for production.") - cmd.Flags().StringVar(&flags.dst, "dst", "", "The destination slot name. Use @main for production.") + cmd.Flags().StringVar(&flags.src, "src", "", "The source slot name. Use 'production' for main app.") + cmd.Flags().StringVar(&flags.dst, "dst", "", "The destination slot name. Use 'production' for main app.") return cmd } @@ -206,6 +206,11 @@ func runSwap(ctx context.Context, flags *swapFlags, rootFlags rootFlagsDefinitio return fmt.Errorf("swap operation requires a service with at least one deployment slot") } + // Warn once if @main is used (deprecated in favor of "production") + if strings.EqualFold(flags.src, "@main") || strings.EqualFold(flags.dst, "@main") { + color.Yellow("WARNING: @main is deprecated. Use 'production' instead to refer to the main app.") + } + // Normalize src and dst flags srcSlot := normalizeSlotName(flags.src) dstSlot := normalizeSlotName(flags.dst) @@ -252,7 +257,7 @@ func runSwap(ctx context.Context, flags *swapFlags, rootFlags rootFlagsDefinitio if !srcProvided || !dstProvided { // Prompt for source slot if !srcProvided { - srcChoices := []*azdext.SelectChoice{{Value: "", Label: "@main (production)"}} + srcChoices := []*azdext.SelectChoice{{Value: "", Label: "production (main app)"}} for _, slot := range slots { srcChoices = append(srcChoices, &azdext.SelectChoice{Value: slot, Label: slot}) } @@ -278,7 +283,7 @@ func runSwap(ctx context.Context, flags *swapFlags, rootFlags rootFlagsDefinitio if !dstProvided { dstChoices := []*azdext.SelectChoice{} if srcSlot != "" { - dstChoices = append(dstChoices, &azdext.SelectChoice{Value: "", Label: "@main (production)"}) + dstChoices = append(dstChoices, &azdext.SelectChoice{Value: "", Label: "production (main app)"}) } for _, slot := range slots { if slot != srcSlot { @@ -321,11 +326,11 @@ func runSwap(ctx context.Context, flags *swapFlags, rootFlags rootFlagsDefinitio // Get display names for confirmation srcDisplay := srcSlot if srcDisplay == "" { - srcDisplay = "@main (production)" + srcDisplay = "production (main app)" } dstDisplay := dstSlot if dstDisplay == "" { - dstDisplay = "@main (production)" + dstDisplay = "production (main app)" } // Confirm the swap unless --no-prompt is set @@ -358,7 +363,14 @@ func runSwap(ctx context.Context, flags *swapFlags, rootFlags rootFlagsDefinitio } func normalizeSlotName(slot string) string { - // Normalize "@main" to empty string (internal representation for main app/production slot) + // "production" and "@production" both map to the main app (empty string). + // This aligns with the Azure platform convention where "production" is the + // reserved name for the main app slot. + if strings.EqualFold(slot, "production") || strings.EqualFold(slot, "@production") { + return "" + } + + // "@main" maps to the main app but is deprecated. if strings.EqualFold(slot, "@main") { return "" } diff --git a/cli/azd/magefile.go b/cli/azd/magefile.go index 4e9db24b25f..5c71b86dd13 100644 --- a/cli/azd/magefile.go +++ b/cli/azd/magefile.go @@ -335,9 +335,7 @@ func runPlaybackTests(azdDir string) error { // excludedPlaybackTests lists tests whose recordings are known to be stale. // These are excluded from automatic playback so they don't block preflight. // Re-record the test to remove it from this list. -var excludedPlaybackTests = map[string]string{ - "Test_CLI_Deploy_SlotDeployment": "stale recording - re-record to include", -} +var excludedPlaybackTests = map[string]string{} // discoverPlaybackTests scans the recordings directory for .yaml files and // subdirectories, returning unique top-level Go test function names. diff --git a/cli/azd/pkg/azapi/webapp.go b/cli/azd/pkg/azapi/webapp.go index 2a048427b5a..5aa72c7126b 100644 --- a/cli/azd/pkg/azapi/webapp.go +++ b/cli/azd/pkg/azapi/webapp.go @@ -226,30 +226,6 @@ func (cli *AzureClient) createZipDeployClient( return client, nil } -// HasAppServiceDeployments checks if the web app has at least one previous deployment. -func (cli *AzureClient) HasAppServiceDeployments( - ctx context.Context, - subscriptionId string, - resourceGroup string, - appName string, -) (bool, error) { - client, err := cli.createWebAppsClient(ctx, subscriptionId) - if err != nil { - return false, err - } - - pager := client.NewListDeploymentsPager(resourceGroup, appName, nil) - if pager.More() { - page, err := pager.NextPage(ctx) - if err != nil { - return false, fmt.Errorf("listing webapp deployments: %w", err) - } - return len(page.Value) > 0, nil - } - - return false, nil -} - // AppServiceSlot represents an App Service deployment slot. type AppServiceSlot struct { Name string diff --git a/cli/azd/pkg/azapi/webapp_slots_test.go b/cli/azd/pkg/azapi/webapp_slots_test.go index c58671e6905..348fd53cbe2 100644 --- a/cli/azd/pkg/azapi/webapp_slots_test.go +++ b/cli/azd/pkg/azapi/webapp_slots_test.go @@ -17,68 +17,6 @@ import ( "github.com/stretchr/testify/require" ) -// Test HasAppServiceDeployments -func Test_HasAppServiceDeployments(t *testing.T) { - t.Run("HasDeployments", func(t *testing.T) { - mockContext := mocks.NewMockContext(context.Background()) - azCli := newAzureClientFromMockContext(mockContext) - - mockContext.HttpClient.When(func(request *http.Request) bool { - return request.Method == http.MethodGet && - strings.Contains(request.URL.Path, "/deployments") - }).RespondFn(func(request *http.Request) (*http.Response, error) { - response := armappservice.WebAppsClientListDeploymentsResponse{ - DeploymentCollection: armappservice.DeploymentCollection{ - Value: []*armappservice.Deployment{ - { - ID: new("deployment-1"), - Name: new("deployment-1"), - }, - }, - }, - } - return mocks.CreateHttpResponseWithBody(request, http.StatusOK, response) - }) - - hasDeployments, err := azCli.HasAppServiceDeployments( - *mockContext.Context, - "SUBSCRIPTION_ID", - "RESOURCE_GROUP_ID", - "WEB_APP_NAME", - ) - - require.NoError(t, err) - require.True(t, hasDeployments) - }) - - t.Run("NoDeployments", func(t *testing.T) { - mockContext := mocks.NewMockContext(context.Background()) - azCli := newAzureClientFromMockContext(mockContext) - - mockContext.HttpClient.When(func(request *http.Request) bool { - return request.Method == http.MethodGet && - strings.Contains(request.URL.Path, "/deployments") - }).RespondFn(func(request *http.Request) (*http.Response, error) { - response := armappservice.WebAppsClientListDeploymentsResponse{ - DeploymentCollection: armappservice.DeploymentCollection{ - Value: []*armappservice.Deployment{}, - }, - } - return mocks.CreateHttpResponseWithBody(request, http.StatusOK, response) - }) - - hasDeployments, err := azCli.HasAppServiceDeployments( - *mockContext.Context, - "SUBSCRIPTION_ID", - "RESOURCE_GROUP_ID", - "WEB_APP_NAME", - ) - - require.NoError(t, err) - require.False(t, hasDeployments) - }) -} - // Test GetAppServiceSlots func Test_GetAppServiceSlots(t *testing.T) { t.Run("WithSlots", func(t *testing.T) { diff --git a/cli/azd/pkg/project/service_target_appservice.go b/cli/azd/pkg/project/service_target_appservice.go index 03a3454c027..2037e74d3d0 100644 --- a/cli/azd/pkg/project/service_target_appservice.go +++ b/cli/azd/pkg/project/service_target_appservice.go @@ -219,48 +219,73 @@ func (st *appServiceTarget) Deploy( }, nil } +// productionSlotName is the reserved platform name for the main app. +// Azure does not allow creating a deployment slot named "production" — +// the ARM API rejects it with: "Slot name: 'Production' is reserved." +// This was verified via: az webapp deployment slot create --slot production +// Azure CLI, PowerShell, and the Azure Portal all use "production" to refer to the main app. +const productionSlotName = "production" + // deploymentTarget represents a target for deployment (main app or a slot) type deploymentTarget struct { SlotName string // Empty string means main app } -// determineDeploymentTargets determines which targets (main app and/or slots) to deploy to -// based on deployment history and available slots. +// determineDeploymentTargets determines which targets (main app and/or slots) to deploy to. // -// Deployment Strategy: -// - First deployment (no history): -// Deploy to main app AND all slots to ensure consistency across all environments. -// This prevents configuration drift and ensures all slots start with the same baseline. -// - Subsequent deployments with no slots: -// Deploy to main app only (standard production deployment). -// - Subsequent deployments with exactly one slot: -// Deploy to that slot only (typical staging workflow before swap to production). -// - Subsequent deployments with multiple slots: -// Check for AZD_DEPLOY_{SERVICE_NAME}_SLOT_NAME environment variable to auto-select a slot. -// If not set, prompt user to select a target, allowing explicit control -// over which environment receives the deployment. +// Deployment target selection: +// 1. SLOT_NAME takes highest precedence — explicit intent always wins. +// "production" means the main app. Any other value must match an existing slot. +// 2. No slots exist — deploy to main app. +// 3. Slots exist + interactive — prompt user to select (includes "production" for main app). +// 4. Slots exist + --no-prompt — fail with error listing available targets. func (st *appServiceTarget) determineDeploymentTargets( ctx context.Context, serviceConfig *ServiceConfig, targetResource *environment.TargetResource, progress *async.Progress[ServiceProgress], ) ([]deploymentTarget, error) { - progress.SetProgress(NewServiceProgress("Checking deployment history")) + slotEnvVarName := slotEnvVarNameForService(serviceConfig.Name) - // Check if there are previous deployments - hasDeployments, err := st.cli.HasAppServiceDeployments( - ctx, - targetResource.SubscriptionId(), - targetResource.ResourceGroupName(), - targetResource.ResourceName(), - ) - if err != nil { - return nil, fmt.Errorf("checking deployment history: %w", err) + // Check SLOT_NAME first — explicit intent always wins + if slotName := st.env.Getenv(slotEnvVarName); slotName != "" { + // "production" is the platform-reserved name for the main app + if strings.EqualFold(slotName, productionSlotName) { + progress.SetProgress(NewServiceProgress("Deploying to production (main app)")) + return []deploymentTarget{{SlotName: ""}}, nil + } + + // Validate that the specified slot exists + progress.SetProgress(NewServiceProgress("Checking deployment slots")) + slots, err := st.cli.GetAppServiceSlots( + ctx, + targetResource.SubscriptionId(), + targetResource.ResourceGroupName(), + targetResource.ResourceName(), + ) + if err != nil { + return nil, fmt.Errorf("getting deployment slots: %w", err) + } + + for _, slot := range slots { + if strings.EqualFold(slot.Name, slotName) { + return []deploymentTarget{{SlotName: slot.Name}}, nil + } + } + + availableSlots := make([]string, len(slots)) + for i, slot := range slots { + availableSlots[i] = slot.Name + } + return nil, fmt.Errorf( + "slot '%s' specified in %s not found. Available slots: [%s]. "+ + "Use '%s=%s' to deploy to the main app", + slotName, slotEnvVarName, strings.Join(availableSlots, ", "), + slotEnvVarName, productionSlotName) } + // No SLOT_NAME set — check if slots exist progress.SetProgress(NewServiceProgress("Checking deployment slots")) - - // Get available slots slots, err := st.cli.GetAppServiceSlots( ctx, targetResource.SubscriptionId(), @@ -271,64 +296,45 @@ func (st *appServiceTarget) determineDeploymentTargets( return nil, fmt.Errorf("getting deployment slots: %w", err) } - // If no previous deployments, always deploy to main app and all slots - if !hasDeployments { - targets := []deploymentTarget{{SlotName: ""}} // Main app - for _, slot := range slots { - targets = append(targets, deploymentTarget{SlotName: slot.Name}) - } - return targets, nil - } - - // Has previous deployments + // No slots — deploy to main app if len(slots) == 0 { - // No slots, deploy to main app only return []deploymentTarget{{SlotName: ""}}, nil } - if len(slots) == 1 { - // Exactly one slot, deploy to that slot only - return []deploymentTarget{{SlotName: slots[0].Name}}, nil - } - - // Multiple slots, prompt user to select - slotEnvVarName := slotEnvVarNameForService(serviceConfig.Name) - - // Check if slot name is set via environment variable (checks azd env first, then system env) - if slotName := st.env.Getenv(slotEnvVarName); slotName != "" { - // Validate that the slot exists + // Slots exist + --no-prompt — fail with clear error + if st.console.IsNoPromptMode() { + availableTargets := []string{productionSlotName} for _, slot := range slots { - if slot.Name == slotName { - return []deploymentTarget{{SlotName: slotName}}, nil - } - } - // Slot not found, return error with available slots - availableSlots := make([]string, len(slots)) - for i, slot := range slots { - availableSlots[i] = slot.Name + availableTargets = append(availableTargets, slot.Name) } return nil, fmt.Errorf( - "slot '%s' specified in %s not found. Available slots: [%s]. "+ - "Please update the environment variable with a valid slot name", - slotName, slotEnvVarName, strings.Join(availableSlots, ", ")) + "deployment slots detected but no target specified. "+ + "Set %s to one of: [%s] ('production' = main app)", + slotEnvVarName, strings.Join(availableTargets, ", ")) } - slotOptions := make([]string, len(slots)) - for i, slot := range slots { - slotOptions[i] = slot.Name + // Slots exist + interactive — prompt user including main app option + slotOptions := []string{fmt.Sprintf("%s (main app)", productionSlotName)} + for _, slot := range slots { + slotOptions = append(slotOptions, slot.Name) } selectedIndex, err := st.console.Select(ctx, input.ConsoleOptions{ Message: fmt.Sprintf( - "Select a deployment slot\nNote: skip this prompt with '%s='\n", + "Select a deployment target\nNote: skip this prompt with '%s='\n", slotEnvVarName), Options: slotOptions, }) if err != nil { - return nil, fmt.Errorf("selecting deployment slot: %w", err) + return nil, fmt.Errorf("selecting deployment target: %w", err) + } + + // Index 0 = production (main app) + if selectedIndex == 0 { + return []deploymentTarget{{SlotName: ""}}, nil } - return []deploymentTarget{{SlotName: slots[selectedIndex].Name}}, nil + return []deploymentTarget{{SlotName: slots[selectedIndex-1].Name}}, nil } // slotEnvVarNameForService returns the environment variable name for setting the deployment slot diff --git a/cli/azd/pkg/project/service_target_appservice_test.go b/cli/azd/pkg/project/service_target_appservice_test.go index 65a438217c6..7a4c59a302b 100644 --- a/cli/azd/pkg/project/service_target_appservice_test.go +++ b/cli/azd/pkg/project/service_target_appservice_test.go @@ -4,11 +4,17 @@ package project import ( + "net/http" "strings" "testing" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appservice/armappservice/v2" + "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/input" + "github.com/azure/azure-dev/cli/azd/test/mocks" + "github.com/azure/azure-dev/cli/azd/test/mocks/mockazapi" "github.com/stretchr/testify/require" ) @@ -53,3 +59,202 @@ func TestNewAppServiceTargetTypeValidation(t *testing.T) { }) } } + +// mockSlotsResponse registers a mock HTTP response for the GetAppServiceSlots call. +func mockSlotsResponse(mockContext *mocks.MockContext, slotNames []string) { + sites := make([]*armappservice.Site, len(slotNames)) + for i, name := range slotNames { + sites[i] = &armappservice.Site{ + Name: new("WEB_APP_NAME/" + name), + } + } + mockContext.HttpClient.When(func(request *http.Request) bool { + return request.Method == http.MethodGet && + strings.Contains(request.URL.Path, "/slots") + }).RespondFn(func(request *http.Request) (*http.Response, error) { + response := armappservice.WebAppsClientListSlotsResponse{ + WebAppCollection: armappservice.WebAppCollection{ + Value: sites, + }, + } + return mocks.CreateHttpResponseWithBody(request, http.StatusOK, response) + }) +} + +func TestDetermineDeploymentTargets(t *testing.T) { + t.Parallel() + + serviceConfig := &ServiceConfig{Name: "my-api"} + targetResource := environment.NewTargetResource( + "SUB_ID", "RG_ID", "WEB_APP_NAME", string(azapi.AzureResourceTypeWebSite), + ) + + type testCase struct { + name string + slotNames []string + envVars map[string]string + noPrompt bool + selectIndex int // for interactive prompt mock (-1 = no prompt expected) + expectError bool + expectErrorMsg string + expectTargets []string // empty string = main app + } + + tests := []testCase{ + { + name: "SlotName_Production_DeploysToMainApp", + slotNames: []string{"staging"}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "production"}, + noPrompt: true, + selectIndex: -1, + expectTargets: []string{""}, + }, + { + name: "SlotName_Production_CaseInsensitive", + slotNames: []string{"staging"}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "Production"}, + noPrompt: true, + selectIndex: -1, + expectTargets: []string{""}, + }, + { + name: "SlotName_Staging_DeploysToSlot", + slotNames: []string{"staging"}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "staging"}, + noPrompt: true, + selectIndex: -1, + expectTargets: []string{"staging"}, + }, + { + name: "SlotName_Invalid_ReturnsError", + slotNames: []string{"staging", "canary"}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "nonexistent"}, + noPrompt: true, + selectIndex: -1, + expectError: true, + expectErrorMsg: "not found", + }, + { + name: "NoSlots_DeploysToMainApp", + slotNames: []string{}, + envVars: map[string]string{}, + noPrompt: true, + selectIndex: -1, + expectTargets: []string{""}, + }, + { + name: "SlotsExist_NoPrompt_NoSlotName_FailsWithError", + slotNames: []string{"staging"}, + envVars: map[string]string{}, + noPrompt: true, + selectIndex: -1, + expectError: true, + expectErrorMsg: "no target specified", + }, + { + name: "MultipleSlots_NoPrompt_NoSlotName_FailsWithError", + slotNames: []string{"staging", "canary"}, + envVars: map[string]string{}, + noPrompt: true, + selectIndex: -1, + expectError: true, + expectErrorMsg: "no target specified", + }, + { + name: "SlotsExist_Interactive_SelectMainApp", + slotNames: []string{"staging"}, + envVars: map[string]string{}, + noPrompt: false, + selectIndex: 0, // Index 0 = "production (main app)" + expectTargets: []string{""}, + }, + { + name: "SlotsExist_Interactive_SelectSlot", + slotNames: []string{"staging"}, + envVars: map[string]string{}, + noPrompt: false, + selectIndex: 1, // Index 1 = "staging" + expectTargets: []string{"staging"}, + }, + { + name: "MultipleSlots_Interactive_SelectSecondSlot", + slotNames: []string{"staging", "canary"}, + envVars: map[string]string{}, + noPrompt: false, + selectIndex: 2, // Index 0=production, 1=staging, 2=canary + expectTargets: []string{"canary"}, + }, + { + name: "SlotName_Production_NoSlotsExist_StillWorks", + slotNames: []string{}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "production"}, + noPrompt: true, + selectIndex: -1, + expectTargets: []string{""}, + }, + { + name: "SlotName_Invalid_ErrorIncludesProductionHint", + slotNames: []string{"staging"}, + envVars: map[string]string{"AZD_DEPLOY_MY_API_SLOT_NAME": "bad"}, + noPrompt: true, + selectIndex: -1, + expectError: true, + expectErrorMsg: "production", + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + t.Parallel() + + mockContext := mocks.NewMockContext(t.Context()) + azCli := mockazapi.NewAzureClientFromMockContext(mockContext) + + // Set up env vars + env := environment.New("test") + for k, v := range tc.envVars { + env.DotenvSet(k, v) + } + + // Mock slots response + mockSlotsResponse(mockContext, tc.slotNames) + + // Set no-prompt mode + mockContext.Console.SetNoPromptMode(tc.noPrompt) + + // Mock interactive select if needed + if tc.selectIndex >= 0 { + mockContext.Console.WhenSelect(func(options input.ConsoleOptions) bool { + return true + }).Respond(tc.selectIndex) + } + + target := &appServiceTarget{ + env: env, + cli: azCli, + console: mockContext.Console, + } + + progress := async.NewNoopProgress[ServiceProgress]() + targets, err := target.determineDeploymentTargets( + *mockContext.Context, + serviceConfig, + targetResource, + progress, + ) + + if tc.expectError { + require.Error(t, err) + if tc.expectErrorMsg != "" { + require.Contains(t, err.Error(), tc.expectErrorMsg) + } + } else { + require.NoError(t, err) + require.Len(t, targets, len(tc.expectTargets)) + for i, expected := range tc.expectTargets { + require.Equal(t, expected, targets[i].SlotName) + } + } + }) + } +} diff --git a/cli/azd/test/functional/deploy_test.go b/cli/azd/test/functional/deploy_test.go index da65dab4050..d1f0406f979 100644 --- a/cli/azd/test/functional/deploy_test.go +++ b/cli/azd/test/functional/deploy_test.go @@ -11,6 +11,7 @@ import ( "net/http" "os" "path/filepath" + "strings" "testing" "time" @@ -101,8 +102,8 @@ func Test_CLI_DeployInvalidFlags(t *testing.T) { } // Test_CLI_Deploy_SlotDeployment tests the deployment slot feature where: -// - First deployment (via `azd up`) deploys to both main app and slot -// - Subsequent deployments (via `azd deploy`) deploy only to the slot when using env var +// - Initial deployment (via `azd up`) deploys to main app using SLOT_NAME=production +// - Subsequent deployment (via `azd deploy`) deploys only to the staging slot using env var // - The main app retains the original version while slot gets the update func Test_CLI_Deploy_SlotDeployment(t *testing.T) { t.Parallel() @@ -122,6 +123,9 @@ func Test_CLI_Deploy_SlotDeployment(t *testing.T) { cli.Env = append(cli.Env, os.Environ()...) cli.Env = append(cli.Env, "AZURE_LOCATION=eastus2") + // Deploy to main app on initial `azd up` — explicit targeting required when slots exist + cli.Env = append(cli.Env, "AZD_DEPLOY_API_SLOT_NAME=production") + // Defer cleanup to delete resource group regardless of test outcome // The resource group name follows the pattern: rg-{envName} t.Cleanup(func() { @@ -134,8 +138,8 @@ func Test_CLI_Deploy_SlotDeployment(t *testing.T) { _, err = cli.RunCommandWithStdIn(ctx, stdinForInit(envName), "init") require.NoError(t, err) - // Run azd up - this will provision and deploy to both main app and slot - t.Logf("Running azd up (provision + initial deploy)\n") + // Run azd up - provision and deploy to main app (SLOT_NAME=production) + t.Logf("Running azd up (provision + deploy to main app)\n") _, err = cli.RunCommandWithStdIn(ctx, stdinForProvision(), "up") require.NoError(t, err) @@ -172,25 +176,25 @@ func Test_CLI_Deploy_SlotDeployment(t *testing.T) { // Create service health prober with session-aware retry delay prober := newServiceHealthProber(httpClient, session) - // Verify both main app and slot return the original response after first deployment + // Verify main app returns the original response after initial deployment t.Logf("Verifying main app returns original response\n") err = prober.probe(t, ctx, websiteURL, originalResponse) require.NoError(t, err, "main app should return original response after azd up") - t.Logf("Verifying slot returns original response\n") - err = prober.probe(t, ctx, slotURL, originalResponse) - require.NoError(t, err, "slot should return original response after azd up") - // Update the data.json file with new content t.Logf("Updating data.json with new content\n") dataJSONPath := filepath.Join(dir, "src", "data.json") err = os.WriteFile(dataJSONPath, []byte(updatedResponse), osutil.PermissionFile) require.NoError(t, err, "failed to update data.json") - // Run azd deploy with the slot environment variable set - // This should deploy only to the staging slot + // Switch to deploying to the staging slot by replacing the env var value t.Logf("Running azd deploy with AZD_DEPLOY_API_SLOT_NAME=staging\n") - cli.Env = append(cli.Env, "AZD_DEPLOY_API_SLOT_NAME=staging") + for i, e := range cli.Env { + if strings.HasPrefix(e, "AZD_DEPLOY_API_SLOT_NAME=") { + cli.Env[i] = "AZD_DEPLOY_API_SLOT_NAME=staging" + break + } + } _, err = cli.RunCommand(ctx, "deploy", "--cwd", dir) require.NoError(t, err) diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Deploy_SlotDeployment.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Deploy_SlotDeployment.yaml index 9ebc9aef063..64cbaa63eae 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Deploy_SlotDeployment.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Deploy_SlotDeployment.yaml @@ -22,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armsubscriptions/v1.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/locations?api-version=2022-12-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47276 + content_length: 48069 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/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/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"}]}},{"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"}]}},{"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"}]}},{"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"}]}}]}' + 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/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: - - "47276" + - "48069" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:30:37 GMT + - Fri, 10 Apr 2026 16:13:56 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - f2d6288b-9f91-4e8c-92be-5e360d542cd2 + - 7db18dca-c953-4009-9e94-801f8e5dd430 X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003038Z:f2d6288b-9f91-4e8c-92be-5e360d542cd2 + - SOUTHCENTRALUS:20260410T161356Z:7db18dca-c953-4009-9e94-801f8e5dd430 X-Msedge-Ref: - - 'Ref A: 38BD592A835E44FF94F7E4D5D8F2085D Ref B: MWH011020809054 Ref C: 2026-01-30T00:30:36Z' + - 'Ref A: 1544EEF7E95441F7A3E7A9ECCAEADCA3 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:13:55Z' status: 200 OK code: 200 - duration: 1.298700577s + duration: 1.651186361s - id: 1 request: proto: HTTP/1.1 @@ -91,9 +91,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -102,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061483 + content_length: 1849581 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNNlKyyivNydFR8vMPCvFwdvULCXL0CQ2GiQb7h2IRhWiFqQl3RTKothYA","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZHNa8JAEMX%2fFvdsYPMFxVt0p1brznY3s4LeJKTBGDbQRvIh%2bd8bBU%2bl5x5n5j3e%2bzE3ltWuObvrqTnXjupL7r7Z4sZSZeltBUgm2dmULdy1quYMkpTu0425vGs%2bTl%2fN%2bW57z3u2YP7sZWZgv9YcPDZ%2fKEzdPm9%2bGMwQdItiC3o4rg1BiOIQK4Be8uPrtFsq0J2hS2RK82l8VLuUt0rYCMUmkAJ6Rckgy0snqQjVytfEu632KzD7pSS%2fQmNjq8r9WtJh0h44DlksyyJAKvjkG6Y8j41PjOCfODbR1D%2fGErgSWYD93xyKdC9L2%2bJgeyWKAQliFLKThffgQGV%2bPWkcfwA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1061483" + - "1849581" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:30:41 GMT + - Fri, 10 Apr 2026 16:14:01 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 64c9db95-c84d-476e-a4f3-c8150d1cff93 + - c06b77d8-bdeb-4fb6-86e4-975368ff0531 X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003042Z:64c9db95-c84d-476e-a4f3-c8150d1cff93 + - SOUTHCENTRALUS:20260410T161402Z:c06b77d8-bdeb-4fb6-86e4-975368ff0531 X-Msedge-Ref: - - 'Ref A: 17FFED56C6974DDB81F93CE800A79ECD Ref B: MWH011020809054 Ref C: 2026-01-30T00:30:38Z' + - 'Ref A: 79886BBDD4114738AA3555982928962C Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:13:56Z' status: 200 OK code: 200 - duration: 4.27828469s + duration: 5.389373945s - id: 2 request: proto: HTTP/1.1 @@ -158,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?%24skiptoken=q1ZKzs8rycwrTSzJzM8Lyc9OzStWsqpWcnUMDgkNNlKyyivNydFR8vMPCvFwdvULCXL0CQ2GiQb7h2IRhWiFqQl3RTKothYA&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/?%24skiptoken=xZHNa8JAEMX%2FFvdsYPMFxVt0p1brznY3s4LeJKTBGDbQRvIh%2Bd8bBU%2Bl5x5n5j3e%2BzE3ltWuObvrqTnXjupL7r7Z4sZSZeltBUgm2dmULdy1quYMkpTu0425vGs%2BTl%2FN%2BW57z3u2YP7sZWZgv9YcPDZ%2FKEzdPm9%2BGMwQdItiC3o4rg1BiOIQK4Be8uPrtFsq0J2hS2RK82l8VLuUt0rYCMUmkAJ6Rckgy0snqQjVytfEu632KzD7pSS%2FQmNjq8r9WtJh0h44DlksyyJAKvjkG6Y8j41PjOCfODbR1D%2FGErgSWYD93xyKdC9L2%2BJgeyWKAQliFLKThffgQGV%2BPWkcfwA%3D&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -169,18 +169,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 472327 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1775" + - "472327" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:30:42 GMT + - Fri, 10 Apr 2026 16:14:03 GMT Expires: - "-1" Pragma: @@ -192,32 +192,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 9599ac01-e3d9-4660-967b-42a4214c7ffc + - e1e193cc-5f32-48fb-ad60-42f5d6abe8fa X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003043Z:9599ac01-e3d9-4660-967b-42a4214c7ffc + - SOUTHCENTRALUS:20260410T161404Z:e1e193cc-5f32-48fb-ad60-42f5d6abe8fa X-Msedge-Ref: - - 'Ref A: A2B2A9FEDCAF4A3AB1B83FDBD6A010DC Ref B: MWH011020809054 Ref C: 2026-01-30T00:30:42Z' + - 'Ref A: 87D565AA2CA14EA6A58408FBD00AE989 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:14:03Z' status: 200 OK code: 200 - duration: 558.123999ms + duration: 1.560347552s - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5742 + content_length: 5741 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb168ee","reference":null},"location":{"value":"eastus2","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.39.26.7824","templateHash":"3539483979435998671"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-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'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"3341241592091839605"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Web/sites/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}/{2}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'', ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2022-03-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"S1","tier":"Standard"},"properties":{"reserved":true,"zoneRedundant":false}},{"type":"Microsoft.Web/sites","apiVersion":"2022-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''api''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken''))), ''2022-03-01'').defaultHostName)]"},"SLOT_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging''), ''2022-03-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"WEBSITE_URL":{"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.WEBSITE_URL.value]"},"SLOT_URL":{"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.SLOT_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-lb168ee","azd-layer-name":"","azd-provision-param-hash":"13cb11b28979913a2eaa3a8787a0df98d0cf4e27b8d7625032b679398f08ef73"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d347996","reference":null},"location":{"value":"eastus2","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.42.1.51946","templateHash":"1493506139227848856"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-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'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"108430222960071865"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Web/sites/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}/{2}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'', ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2022-03-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"S1","tier":"Standard"},"properties":{"reserved":true,"zoneRedundant":false}},{"type":"Microsoft.Web/sites","apiVersion":"2022-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''api''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken''))), ''2022-03-01'').defaultHostName)]"},"SLOT_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging''), ''2022-03-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"WEBSITE_URL":{"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.WEBSITE_URL.value]"},"SLOT_URL":{"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.SLOT_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-d347996","azd-layer-name":"","azd-provision-param-hash":"0ffcc945a2e1004fc9480b9ecd204c426089e78ba2134b934cc18c0699bbfb22"}}' form: {} headers: Accept: @@ -227,14 +227,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5742" + - "5741" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024/validate?api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621/validate?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -244,7 +244,7 @@ interactions: trailer: {} content_length: 2457 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024","name":"azdtest-lb168ee-1769733024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","azd-layer-name":"","azd-provision-param-hash":"13cb11b28979913a2eaa3a8787a0df98d0cf4e27b8d7625032b679398f08ef73"},"properties":{"templateHash":"3539483979435998671","parameters":{"environmentName":{"type":"String","value":"azdtest-lb168ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-30T01:30:43Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-30T00:30:43.3875481Z","duration":"PT0S","correlationId":"4d19d9d4b3a31b3dc0e203d15347aee9","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-lb168ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lb168ee"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging"}]}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621","name":"azdtest-d347996-1775837621","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","azd-layer-name":"","azd-provision-param-hash":"0ffcc945a2e1004fc9480b9ecd204c426089e78ba2134b934cc18c0699bbfb22"},"properties":{"templateHash":"1493506139227848856","parameters":{"environmentName":{"type":"String","value":"azdtest-d347996"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-10T17:14:08Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-10T16:14:09.0582364Z","duration":"PT0S","correlationId":"265ca9910b65c520c857eac24ae4e3d9","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-d347996","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d347996"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging"}]}}' headers: Cache-Control: - no-cache @@ -253,7 +253,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:30:43 GMT + - Fri, 10 Apr 2026 16:14:09 GMT Expires: - "-1" Pragma: @@ -265,32 +265,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "2999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "199" X-Ms-Request-Id: - - 48ae54fe-48b4-417d-a8d4-4c63b0de0ecb + - 2125640d-1989-4576-8101-3748dcbd68ec X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003044Z:48ae54fe-48b4-417d-a8d4-4c63b0de0ecb + - SOUTHCENTRALUS:20260410T161410Z:2125640d-1989-4576-8101-3748dcbd68ec X-Msedge-Ref: - - 'Ref A: 0FA68229F0404C729962653BA499C552 Ref B: MWH011020809054 Ref C: 2026-01-30T00:30:43Z' + - 'Ref A: DFFBFE3F595448E798B0DE4BA8BF1806 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:14:08Z' status: 200 OK code: 200 - duration: 1.226723652s + duration: 1.626898324s - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5742 + content_length: 5741 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb168ee","reference":null},"location":{"value":"eastus2","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.39.26.7824","templateHash":"3539483979435998671"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-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'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.39.26.7824","templateHash":"3341241592091839605"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Web/sites/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}/{2}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'', ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2022-03-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"S1","tier":"Standard"},"properties":{"reserved":true,"zoneRedundant":false}},{"type":"Microsoft.Web/sites","apiVersion":"2022-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''api''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken''))), ''2022-03-01'').defaultHostName)]"},"SLOT_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging''), ''2022-03-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"WEBSITE_URL":{"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.WEBSITE_URL.value]"},"SLOT_URL":{"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.SLOT_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-lb168ee","azd-layer-name":"","azd-provision-param-hash":"13cb11b28979913a2eaa3a8787a0df98d0cf4e27b8d7625032b679398f08ef73"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d347996","reference":null},"location":{"value":"eastus2","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.42.1.51946","templateHash":"1493506139227848856"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-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'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.42.1.51946","templateHash":"108430222960071865"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Web/sites/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots/config","apiVersion":"2022-03-01","name":"[format(''{0}/{1}/{2}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'', ''appsettings'')]","properties":{"SCM_DO_BUILD_DURING_DEPLOYMENT":"true"},"dependsOn":["[resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]"]},{"type":"Microsoft.Web/serverfarms","apiVersion":"2022-03-01","name":"[format(''plan-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","sku":{"name":"S1","tier":"Standard"},"properties":{"reserved":true,"zoneRedundant":false}},{"type":"Microsoft.Web/sites","apiVersion":"2022-03-01","name":"[format(''app-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''api''))]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Web/sites/slots","apiVersion":"2022-03-01","name":"[format(''{0}/{1}'', format(''app-{0}'', variables(''resourceToken'')), ''staging'')]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]","properties":{"serverFarmId":"[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","httpsOnly":true,"siteConfig":{"linuxFxVersion":"PYTHON|3.11","appCommandLine":"gunicorn --bind=0.0.0.0 --timeout 600 server:app"}},"identity":{"type":"SystemAssigned"},"dependsOn":["[resourceId(''Microsoft.Web/serverfarms'', format(''plan-{0}'', variables(''resourceToken'')))]","[resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites'', format(''app-{0}'', variables(''resourceToken''))), ''2022-03-01'').defaultHostName)]"},"SLOT_URL":{"type":"string","value":"[format(''https://{0}/'', reference(resourceId(''Microsoft.Web/sites/slots'', format(''app-{0}'', variables(''resourceToken'')), ''staging''), ''2022-03-01'').defaultHostName)]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"WEBSITE_URL":{"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.WEBSITE_URL.value]"},"SLOT_URL":{"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.SLOT_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-d347996","azd-layer-name":"","azd-provision-param-hash":"0ffcc945a2e1004fc9480b9ecd204c426089e78ba2134b934cc18c0699bbfb22"}}' form: {} headers: Accept: @@ -300,14 +300,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "5742" + - "5741" Content-Type: - application/json User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024?api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -315,20 +315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1411 + content_length: 1410 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024","name":"azdtest-lb168ee-1769733024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","azd-layer-name":"","azd-provision-param-hash":"13cb11b28979913a2eaa3a8787a0df98d0cf4e27b8d7625032b679398f08ef73"},"properties":{"templateHash":"3539483979435998671","parameters":{"environmentName":{"type":"String","value":"azdtest-lb168ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-30T01:30:44Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-01-30T00:30:44.5906877Z","duration":"PT0.0007517S","correlationId":"4d19d9d4b3a31b3dc0e203d15347aee9","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-lb168ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lb168ee"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621","name":"azdtest-d347996-1775837621","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","azd-layer-name":"","azd-provision-param-hash":"0ffcc945a2e1004fc9480b9ecd204c426089e78ba2134b934cc18c0699bbfb22"},"properties":{"templateHash":"1493506139227848856","parameters":{"environmentName":{"type":"String","value":"azdtest-d347996"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-10T17:14:10Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-04-10T16:14:10.6838594Z","duration":"PT0.000201S","correlationId":"265ca9910b65c520c857eac24ae4e3d9","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-d347996","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d347996"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/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-lb168ee-1769733024/operationStatuses/08584318738408751527?api-version=2021-04-01&t=639053298469032303&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=nwZ0nB1pr_zM659kPjU089c-N1hKqlqdUq7U4Vs5Ja3qn6_P8rXmeeLfL-KL2vmP3yrOmhT-WqT1ry7yBaFKBOLdb40MkzfSHWT6Z9wyVZuG0Jy44h3nWeWkRs8dfGCJbflmSyWhepIejdJM6VSdBB8Wj7DAYLAEkS4pdirDEkmPEUC1gBOJRLMIDtSOBUZ6Z_6sFXXrRY6nWOfSAwLAB55OCGWSX85nLYo29HXoYtgH-RRoAgBXHZlaFQHpbTuy0qPKlaccOb424jwH_vxI6JjuIEM10AnEPl6TKvQl3dehcgsA42k3dKc8pOENiJZPhpsWxHfTtW7kWntqUTS0gg&h=WnlIsfTV5-sBTTKPj4dYubNM8BGBf1i6uoMffiBd7e0 + - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621/operationStatuses/08584257692347860841?api-version=2021-04-01&t=639114344522463617&c=MIIIJzCCBw-gAwIBAgIRAJhyRRrlpkgJ-rgYNECp-U0wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjAzMDMxNzU0MDVaFw0yNjA4MjkyMzU0MDVaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz7FgDX3CWGPuhRsqe_-dqN_tinmqcNBG2rXtsmK0KuneCT8_lvxM6-WxMaqmt9jK2vftDS-bxNfmxQbZWPN8jY69MDItDW0bxXvDDYwsiuVW7jdwHU7N9viLCvHbpb7oNb1DcaoOw4P7eUvHqy5Pz-wGor-l9va-TwKPurQnV6YxXR06zTNBegrkF-T9vvnqvNg_wmn2l0N0X5bvqG9CiUKRJp_xzLISm4arcIKp5Fq2278P22SeDEe18l2IUd0wZzMAj_kasSMDz5T1C6L88u3glf7oS0haOuwkrqwETWZJdg-SA5tJp1hzygRvdgeB2ZGTUPseNZxCKJH2iwh78QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU-Cip5KOo-5SrESdXN05Qo3P5jXAwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS80OS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBCijaSWPynXawZidUczIONLwrF3nqzljlfNAIIYNDzrTINGT-k5vkTmsaDBUSiruPENdcaDdKmS6JVUi5eTHK94ysi7cjZJDhXcFTIG5Kghif78_mZOZuI9ScRbjk3IEzwfzvbFbSqQJwNSrGNd999Qih1avodzdChfKqEnHbQGH9leHig6jlbj5YoZirZDw-9JpiNzRRd1W9H1BpJYOQLkbWpbByEtoMucgX88mhtdtwqvzlVY2zceVE5naCe7u6qUW2SwLPKDDoCyshW3nYHgB3pEKuMyeXWbfDp45BpEkY1bs0i4iL2SAsfBeJDGv4RR5kDRiMXJ0GvTwcHgywl&s=k_T3LJ9MPBDNgcRXl7HMWeUxbJhHNU45amE1JUSGE9wawjk-I-5fh5JKVw-XRMWKyWGFqiPQCp6fkC2zHhD1iIMtM0hrEcNy9NRFM5ZNKniaJMTvaG6BGp2849ddWtdN2SwnUjRsVWC8OQeUAfgfVfM73a8fax1uvhM_RxeTB-6XNZtWUBkJSTT8NziPzJbxHkN4xyjme7aTCCvfrf11820EojtwE7ZlOspokurXQ9dwyAN61oZKamHFv3X0slXd7R6pWNw4u1RXspXho97i8S95BYuw4KWVjECayvyxvfpp6MRPpdyljE2497A_2jR0lcZJQ8AEJtNjTK4sd8ISGg&h=z1KM6uXG5qrcv6a8YUN3n55kiyTigzR297rV9nep2RM Cache-Control: - no-cache Content-Length: - - "1411" + - "1410" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:30:46 GMT + - Fri, 10 Apr 2026 16:14:11 GMT Expires: - "-1" Pragma: @@ -340,22 +340,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Deployment-Engine-Version: - - 1.568.0 + - 1.628.3 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "2998" + - "2999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "198" + - "199" X-Ms-Request-Id: - - 5240473c-528a-4b96-b4d1-7d432d0e8f25 + - 95aee14c-b72f-41cc-8bea-9984900c54db X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003046Z:5240473c-528a-4b96-b4d1-7d432d0e8f25 + - SOUTHCENTRALUS:20260410T161412Z:95aee14c-b72f-41cc-8bea-9984900c54db X-Msedge-Ref: - - 'Ref A: 8FEF29A37A6F4C89BC6A9A0841E79698 Ref B: MWH011020809054 Ref C: 2026-01-30T00:30:44Z' + - 'Ref A: 918A91FAAB854910A59657CDD06B2949 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:14:10Z' status: 201 Created code: 201 - duration: 2.509406134s + duration: 1.847868168s - id: 5 request: proto: HTTP/1.1 @@ -375,10 +375,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024/operationStatuses/08584318738408751527?api-version=2021-04-01&t=639053298469032303&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=nwZ0nB1pr_zM659kPjU089c-N1hKqlqdUq7U4Vs5Ja3qn6_P8rXmeeLfL-KL2vmP3yrOmhT-WqT1ry7yBaFKBOLdb40MkzfSHWT6Z9wyVZuG0Jy44h3nWeWkRs8dfGCJbflmSyWhepIejdJM6VSdBB8Wj7DAYLAEkS4pdirDEkmPEUC1gBOJRLMIDtSOBUZ6Z_6sFXXrRY6nWOfSAwLAB55OCGWSX85nLYo29HXoYtgH-RRoAgBXHZlaFQHpbTuy0qPKlaccOb424jwH_vxI6JjuIEM10AnEPl6TKvQl3dehcgsA42k3dKc8pOENiJZPhpsWxHfTtW7kWntqUTS0gg&h=WnlIsfTV5-sBTTKPj4dYubNM8BGBf1i6uoMffiBd7e0 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621/operationStatuses/08584257692347860841?api-version=2021-04-01&t=639114344522463617&c=MIIIJzCCBw-gAwIBAgIRAJhyRRrlpkgJ-rgYNECp-U0wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjAzMDMxNzU0MDVaFw0yNjA4MjkyMzU0MDVaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz7FgDX3CWGPuhRsqe_-dqN_tinmqcNBG2rXtsmK0KuneCT8_lvxM6-WxMaqmt9jK2vftDS-bxNfmxQbZWPN8jY69MDItDW0bxXvDDYwsiuVW7jdwHU7N9viLCvHbpb7oNb1DcaoOw4P7eUvHqy5Pz-wGor-l9va-TwKPurQnV6YxXR06zTNBegrkF-T9vvnqvNg_wmn2l0N0X5bvqG9CiUKRJp_xzLISm4arcIKp5Fq2278P22SeDEe18l2IUd0wZzMAj_kasSMDz5T1C6L88u3glf7oS0haOuwkrqwETWZJdg-SA5tJp1hzygRvdgeB2ZGTUPseNZxCKJH2iwh78QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU-Cip5KOo-5SrESdXN05Qo3P5jXAwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS80OS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzQ5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBCijaSWPynXawZidUczIONLwrF3nqzljlfNAIIYNDzrTINGT-k5vkTmsaDBUSiruPENdcaDdKmS6JVUi5eTHK94ysi7cjZJDhXcFTIG5Kghif78_mZOZuI9ScRbjk3IEzwfzvbFbSqQJwNSrGNd999Qih1avodzdChfKqEnHbQGH9leHig6jlbj5YoZirZDw-9JpiNzRRd1W9H1BpJYOQLkbWpbByEtoMucgX88mhtdtwqvzlVY2zceVE5naCe7u6qUW2SwLPKDDoCyshW3nYHgB3pEKuMyeXWbfDp45BpEkY1bs0i4iL2SAsfBeJDGv4RR5kDRiMXJ0GvTwcHgywl&s=k_T3LJ9MPBDNgcRXl7HMWeUxbJhHNU45amE1JUSGE9wawjk-I-5fh5JKVw-XRMWKyWGFqiPQCp6fkC2zHhD1iIMtM0hrEcNy9NRFM5ZNKniaJMTvaG6BGp2849ddWtdN2SwnUjRsVWC8OQeUAfgfVfM73a8fax1uvhM_RxeTB-6XNZtWUBkJSTT8NziPzJbxHkN4xyjme7aTCCvfrf11820EojtwE7ZlOspokurXQ9dwyAN61oZKamHFv3X0slXd7R6pWNw4u1RXspXho97i8S95BYuw4KWVjECayvyxvfpp6MRPpdyljE2497A_2jR0lcZJQ8AEJtNjTK4sd8ISGg&h=z1KM6uXG5qrcv6a8YUN3n55kiyTigzR297rV9nep2RM method: GET response: proto: HTTP/2.0 @@ -397,7 +397,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:17 GMT + - Fri, 10 Apr 2026 16:15:42 GMT Expires: - "-1" Pragma: @@ -409,20 +409,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - b205568b-508f-4d31-b151-eec8e54b93bc + - 63f97909-9b88-4c29-b023-1a6bbe0bb153 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20260130T003218Z:b205568b-508f-4d31-b151-eec8e54b93bc + - SOUTHCENTRALUS:20260410T161543Z:63f97909-9b88-4c29-b023-1a6bbe0bb153 X-Msedge-Ref: - - 'Ref A: 6C1E254847AB426CA1686891FDE32F32 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:18Z' + - 'Ref A: 9CCC560D644D49B6A4DD8FF11C8A5FC4 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:43Z' status: 200 OK code: 200 - duration: 184.368891ms + duration: 230.248914ms - id: 6 request: proto: HTTP/1.1 @@ -442,10 +442,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024?api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -455,7 +455,7 @@ interactions: trailer: {} content_length: 2509 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-lb168ee-1769733024","name":"azdtest-lb168ee-1769733024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","azd-layer-name":"","azd-provision-param-hash":"13cb11b28979913a2eaa3a8787a0df98d0cf4e27b8d7625032b679398f08ef73"},"properties":{"templateHash":"3539483979435998671","parameters":{"environmentName":{"type":"String","value":"azdtest-lb168ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-01-30T01:30:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-01-30T00:32:04.9876384Z","duration":"PT1M20.3969507S","correlationId":"4d19d9d4b3a31b3dc0e203d15347aee9","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-lb168ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lb168ee"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-34ois7zchicre.azurewebsites.net/"},"sloT_URL":{"type":"String","value":"https://app-34ois7zchicre-staging.azurewebsites.net/"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging/config/appsettings"}]}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/providers/Microsoft.Resources/deployments/azdtest-d347996-1775837621","name":"azdtest-d347996-1775837621","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","azd-layer-name":"","azd-provision-param-hash":"0ffcc945a2e1004fc9480b9ecd204c426089e78ba2134b934cc18c0699bbfb22"},"properties":{"templateHash":"1493506139227848856","parameters":{"environmentName":{"type":"String","value":"azdtest-d347996"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2026-04-10T17:14:10Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-04-10T16:15:34.3113897Z","duration":"PT1M23.6275303S","correlationId":"265ca9910b65c520c857eac24ae4e3d9","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-d347996","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d347996"}],"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-yswqbm6bq4kx2.azurewebsites.net/"},"sloT_URL":{"type":"String","value":"https://app-yswqbm6bq4kx2-staging.azurewebsites.net/"}},"outputResources":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/config/appsettings"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging"},{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging/config/appsettings"}]}}' headers: Cache-Control: - no-cache @@ -464,7 +464,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:17 GMT + - Fri, 10 Apr 2026 16:15:43 GMT Expires: - "-1" Pragma: @@ -476,20 +476,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - f6e475a6-fb4f-44d8-9387-28b77bfc5993 + - 6ff7034e-253b-4c94-b8df-773a0e358612 X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003218Z:f6e475a6-fb4f-44d8-9387-28b77bfc5993 + - SOUTHCENTRALUS:20260410T161543Z:6ff7034e-253b-4c94-b8df-773a0e358612 X-Msedge-Ref: - - 'Ref A: 9A3B90131A734F7E94930F5ACDF3284B Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:18Z' + - 'Ref A: A1C0100E883949E3B830934A3C4AA56E Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:43Z' status: 200 OK code: 200 - duration: 207.451427ms + duration: 352.240483ms - id: 7 request: proto: HTTP/1.1 @@ -511,10 +511,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -524,7 +524,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -533,7 +533,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:17 GMT + - Fri, 10 Apr 2026 16:15:43 GMT Expires: - "-1" Pragma: @@ -545,20 +545,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 143033ea-9b93-4ba5-9345-465faff3d485 + - 2c508c6f-6083-448d-9b8e-b2ac3bbbf1e1 X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003218Z:143033ea-9b93-4ba5-9345-465faff3d485 + - SOUTHCENTRALUS:20260410T161544Z:2c508c6f-6083-448d-9b8e-b2ac3bbbf1e1 X-Msedge-Ref: - - 'Ref A: E9951FC93F3C46688375F740771B22A0 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:18Z' + - 'Ref A: 0D45FF512BBF4503B4A8AD734C495AA1 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:44Z' status: 200 OK code: 200 - duration: 96.494571ms + duration: 462.858466ms - id: 8 request: proto: HTTP/1.1 @@ -580,10 +580,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -593,7 +593,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -602,7 +602,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:18 GMT + - Fri, 10 Apr 2026 16:15:44 GMT Expires: - "-1" Pragma: @@ -614,20 +614,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 98072192-8b1b-4901-a6b2-9d7833442071 + - 2eb4f927-9dd9-41d0-a4dc-1c6427d00ae6 X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003218Z:98072192-8b1b-4901-a6b2-9d7833442071 + - SOUTHCENTRALUS:20260410T161545Z:2eb4f927-9dd9-41d0-a4dc-1c6427d00ae6 X-Msedge-Ref: - - 'Ref A: CDEA4B9D149D4B4782B07D4A2BFF913C Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:18Z' + - 'Ref A: 53148009A3A5445596F3F4E44287311D Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:44Z' status: 200 OK code: 200 - duration: 91.37664ms + duration: 1.063666994s - id: 9 request: proto: HTTP/1.1 @@ -649,10 +649,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -662,7 +662,7 @@ interactions: trailer: {} content_length: 472 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-service-name":"api","azd-env-name":"azdtest-d347996"}}]}' headers: Cache-Control: - no-cache @@ -671,7 +671,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:18 GMT + - Fri, 10 Apr 2026 16:15:45 GMT Expires: - "-1" Pragma: @@ -683,20 +683,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "3748" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "248" X-Ms-Request-Id: - - cad640dd-456d-43d9-b5e5-a7bbec838597 + - 1feded83-ac61-446a-9e55-cb9bcd61982b X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003219Z:cad640dd-456d-43d9-b5e5-a7bbec838597 + - SOUTHCENTRALUS:20260410T161546Z:1feded83-ac61-446a-9e55-cb9bcd61982b X-Msedge-Ref: - - 'Ref A: 4983AC55B6DC430880B159172951A36B Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:19Z' + - 'Ref A: DBC0ABC7EA424A0391219B83F0C5969A Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:45Z' status: 200 OK code: 200 - duration: 573.14279ms + duration: 420.353992ms - id: 10 request: proto: HTTP/1.1 @@ -718,10 +718,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -731,7 +731,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -740,7 +740,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:18 GMT + - Fri, 10 Apr 2026 16:15:46 GMT Expires: - "-1" Pragma: @@ -752,20 +752,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - ac6be341-7656-4808-a917-af7a96cbdd46 + - 70816773-e9db-4129-a367-7ce9d3ec2876 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003219Z:ac6be341-7656-4808-a917-af7a96cbdd46 + - SOUTHCENTRALUS:20260410T161547Z:70816773-e9db-4129-a367-7ce9d3ec2876 X-Msedge-Ref: - - 'Ref A: 442BE6B15C32450BB0ED5C02D29817F8 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:19Z' + - 'Ref A: 00F2E69CD83F4CCCA8B0899E4DE4F8D0 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:46Z' status: 200 OK code: 200 - duration: 122.204623ms + duration: 1.070592204s - id: 11 request: proto: HTTP/1.1 @@ -787,10 +787,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -800,7 +800,7 @@ interactions: trailer: {} content_length: 472 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-service-name":"api","azd-env-name":"azdtest-d347996"}}]}' headers: Cache-Control: - no-cache @@ -809,7 +809,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:32:19 GMT + - Fri, 10 Apr 2026 16:15:46 GMT Expires: - "-1" Pragma: @@ -821,20 +821,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 639a6d9e-d8ad-40b5-9d24-9009d8237b3d + - e5eae717-1490-4d70-bc3d-ba4c87f2a47a X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003219Z:639a6d9e-d8ad-40b5-9d24-9009d8237b3d + - EASTUS2:20260410T161547Z:e5eae717-1490-4d70-bc3d-ba4c87f2a47a X-Msedge-Ref: - - 'Ref A: 0C204776EB2E4082BDCCF9280DA69CA6 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:19Z' + - 'Ref A: E896CFC00254421FBB556893B03E9BCB Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:47Z' status: 200 OK code: 200 - duration: 224.281927ms + duration: 273.188279ms - id: 12 request: proto: HTTP/1.1 @@ -856,167 +856,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deployments?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, 30 Jan 2026 00:32:51 GMT - Etag: - - '"42259c71"' - Expires: - - "-1" - Pragma: - - no-cache - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Aspnet-Version: - - 4.0.30319 - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=4070b897-9ee6-4cec-ac9f-addac5f3c6e2/eastus2/5b8d9bce-b483-4e2f-8276-e572b924fd2f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3750" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "250" - X-Ms-Request-Id: - - cac87be8-c98b-4ff1-ae92-c73a22a4fa8f - X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003252Z:cac87be8-c98b-4ff1-ae92-c73a22a4fa8f - X-Msedge-Ref: - - 'Ref A: 7C88D82E44C2437F963FA840F5878B43 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:19Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 32.367176219s - - id: 13 - 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.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots?api-version=2023-01-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 9051 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "9051" - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 30 Jan 2026 00:32:51 GMT - Etag: - - '"1DC917FD3EC6CF5"' - 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: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - X-Ms-Original-Request-Ids: - - 00389c5f-0e7b-4a26-a427-61f3a2e28182 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - b6e3085e-cf51-479f-81a0-96c8a7c6bb0b - X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003252Z:b6e3085e-cf51-479f-81a0-96c8a7c6bb0b - X-Msedge-Ref: - - 'Ref A: 7F3B37EB90D347FFB0704C7B1EFF730D Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:52Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 296.886857ms - - 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.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -1024,20 +867,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9158 + content_length: 8930 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"properties":{"name":"app-34ois7zchicre","state":"Running","hostNames":["app-34ois7zchicre.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre.azurewebsites.net","app-34ois7zchicre.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:26.5633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre\\$app-34ois7zchicre","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871"}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"properties":{"name":"app-yswqbm6bq4kx2","state":"Running","hostNames":["app-yswqbm6bq4kx2.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2.azurewebsites.net","app-yswqbm6bq4kx2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:14:52.9666667","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2\\$app-yswqbm6bq4kx2","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1"}}' headers: Cache-Control: - no-cache Content-Length: - - "9158" + - "8930" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:32:52 GMT + - Fri, 10 Apr 2026 16:15:47 GMT Etag: - - '"1DC917FC4F67835"' + - 1DCC90529ECA66B Expires: - "-1" Pragma: @@ -1051,23 +894,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - d710729d-4654-4055-a4eb-a8c9b4423099 + - 251a4961-8943-4063-987a-70565ed05b27 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003252Z:5653cb5a-6738-46e5-997f-a1289ad891d8 + - EASTUS2:20260410T161547Z:f162572a-ac95-416a-95ae-0422152bd855 X-Msedge-Ref: - - 'Ref A: 9C94E12A1D3143C5A39A8832C4B30B3D Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:52Z' + - 'Ref A: D49741FFC16844FAB668355683B8E506 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:15:47Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 263.359659ms - - id: 15 + duration: 423.971923ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -1075,16 +918,16 @@ interactions: content_length: 1158 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre.scm.azurewebsites.net + host: app-yswqbm6bq4kx2.scm.azurewebsites.net remote_addr: "" request_uri: "" body: !!binary | - UEsDBBQACAAIAM0DPlwAAAAAAAAAAAAAAAAJAAkAZGF0YS5qc29uVVQFAAGj+3tpquZSUF + UEsDBBQACAAIALZJilwAAAAAAAAAAAAAAAAJAAkAZGF0YS5qc29uVVQFAAG4IdlpquZSUF DKTS0uTkxPVbJSUPJIzcnJV0grys9VcKwqLUpVcCwoUAhOLSrLTE5VVNIBqS5LLSrOzM8D - qTbUM9AzUOKq5QIEAAD//1BLBwg582GSSQAAAEcAAABQSwMEFAAIAAgAzQM+XAAAAAAAAA - AAAAAAABAACQByZXF1aXJlbWVudHMudHh0VVQFAAGj+3tpSstJLM7mSi/Ny0zOL8rjAgQA - AP//UEsHCOq+kCwVAAAADwAAAFBLAwQUAAgACADNAz5cAAAAAAAAAAAAAAAACQAJAHNlcn - Zlci5weVVUBQABo/t7aXxSQYvbPBC961fMN3uxwDiBbw8lVKUUktJLWzYLPQqtPa61tSUh + qTbUM9AzUOKq5QIEAAD//1BLBwg582GSSQAAAEcAAABQSwMEFAAIAAgAtkmKXAAAAAAAAA + AAAAAAABAACQByZXF1aXJlbWVudHMudHh0VVQFAAG4IdlpSstJLM7mSi/Ny0zOL8rjAgQA + AP//UEsHCOq+kCwVAAAADwAAAFBLAwQUAAgACAC2SYpcAAAAAAAAAAAAAAAACQAJAHNlcn + Zlci5weVVUBQABuCHZaXxSQYvbPBC961fMN3uxwDiBbw8lVKUUktJLWzYLPQqtPa61tSUh jXc3lP73IjnJJoXWhrH1pPfmaWZu/lvNKa4erFuRe4Jw4MG7/wUi7u0URoLdaNIPMCEAD4 YhEs/RJeCBoPWOyXEC30Nn2DSPybsGEYWwU/CRIQOnf59EH/0EfRE8gkW9hjtKwbtEQuRE aoErrZ2ZSGspxHsTQhP9zFThCuX1+m0wPGxyeIdSdNSDdR29VBlRiHIjAABu4CNx8d3ZSC @@ -1093,14 +936,14 @@ interactions: e5KNUw2Yn4EEihCWG0rWHr3erCDL20FBh2dqTPnnd+dt02Rh83fxW+clPmoZunkKqfSJmI m4sbg/MMfRbFX7K+YiY2PCd1u769xv/h+HxOCmF7OA0PKAWo9WSs0xoX42X0FFjHuYfknm z0rvlOXOHXL3f3WMOf8Lfth/2n++1eH/ffrNdreexzGcXZVYNPrHDdlBfrkkXlIMXvAAAA - //9QSwcIWBPbkcwBAABmAwAAUEsDBBQACAAIAM0DPlwAAAAAAAAAAAAAAAALAAkAc3Rhcn - R1cC50eHRVVAUAAaP7e2lKL83LTM4vylPQ1U3KzEuxNdADQwVd3ZLM3NT80hIFMwMDheLU - orLUIqvEggIuQAAAAP//UEsHCMvyTfM0AAAAMQAAAFBLAQIUABQACAAIAM0DPlw582GSSQ - AAAEcAAAAJAAkAAAAAAAAAAAAAAAAAAABkYXRhLmpzb25VVAUAAaP7e2lQSwECFAAUAAgA - CADNAz5c6r6QLBUAAAAPAAAAEAAJAAAAAAAAAAAAAACJAAAAcmVxdWlyZW1lbnRzLnR4dF - VUBQABo/t7aVBLAQIUABQACAAIAM0DPlxYE9uRzAEAAGYDAAAJAAkAAAAAAAAAAAAAAOUA - AABzZXJ2ZXIucHlVVAUAAaP7e2lQSwECFAAUAAgACADNAz5cy/JN8zQAAAAxAAAACwAJAA - AAAAAAAAAAAADxAgAAc3RhcnR1cC50eHRVVAUAAaP7e2lQSwUGAAAAAAQABAAJAQAAZwMA + //9QSwcIWBPbkcwBAABmAwAAUEsDBBQACAAIALZJilwAAAAAAAAAAAAAAAALAAkAc3Rhcn + R1cC50eHRVVAUAAbgh2WlKL83LTM4vylPQ1U3KzEuxNdADQwVd3ZLM3NT80hIFMwMDheLU + orLUIqvEggIuQAAAAP//UEsHCMvyTfM0AAAAMQAAAFBLAQIUABQACAAIALZJilw582GSSQ + AAAEcAAAAJAAkAAAAAAAAAAAAAAAAAAABkYXRhLmpzb25VVAUAAbgh2WlQSwECFAAUAAgA + CAC2SYpc6r6QLBUAAAAPAAAAEAAJAAAAAAAAAAAAAACJAAAAcmVxdWlyZW1lbnRzLnR4dF + VUBQABuCHZaVBLAQIUABQACAAIALZJilxYE9uRzAEAAGYDAAAJAAkAAAAAAAAAAAAAAOUA + AABzZXJ2ZXIucHlVVAUAAbgh2WlQSwECFAAUAAgACAC2SYpcy/JN8zQAAAAxAAAACwAJAA + AAAAAAAAAAAADxAgAAc3RhcnR1cC50eHRVVAUAAbgh2WlQSwUGAAAAAAQABAAJAQAAZwMA AAAA form: {} headers: @@ -1115,10 +958,10 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - azsdk-go-zip-deploy/1.0.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-zip-deploy/1.0.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://app-34ois7zchicre.scm.azurewebsites.net:443/api/zipdeploy?isAsync=true + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://app-yswqbm6bq4kx2.scm.azurewebsites.net:443/api/zipdeploy?isAsync=true method: POST response: proto: HTTP/1.1 @@ -1133,22 +976,22 @@ interactions: Content-Length: - "0" Date: - - Fri, 30 Jan 2026 00:32:54 GMT + - Fri, 10 Apr 2026 16:16:52 GMT Location: - - https://app-34ois7zchicre.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-01-30_00-32-54Z + - https://app-yswqbm6bq4kx2.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-04-10_16-16-52Z Retryafter: - "30" Scm-Deployment-Id: - - 35aee243-1c5f-4161-bb44-bc0b617809bf + - 9d0fc21d-4821-4425-b011-bf889ea84430 Server: - Kestrel Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2.scm.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2.scm.azurewebsites.net status: 202 Accepted code: 202 - duration: 1.73197965s - - id: 16 + duration: 1m5.008092277s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -1169,10 +1012,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deploymentStatus/35aee243-1c5f-4161-bb44-bc0b617809bf?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/deploymentStatus/9d0fc21d-4821-4425-b011-bf889ea84430?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1025,7 @@ interactions: trailer: {} content_length: 607 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deploymentStatus/35aee243-1c5f-4161-bb44-bc0b617809bf","name":"35aee243-1c5f-4161-bb44-bc0b617809bf","type":"Microsoft.Web/sites/deploymentStatus","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"properties":{"deploymentId":"35aee243-1c5f-4161-bb44-bc0b617809bf","status":"BuildInProgress","numberOfInstancesInProgress":0,"numberOfInstancesSuccessful":0,"numberOfInstancesFailed":0,"failedInstancesLogs":null,"errors":null}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/deploymentStatus/9d0fc21d-4821-4425-b011-bf889ea84430","name":"9d0fc21d-4821-4425-b011-bf889ea84430","type":"Microsoft.Web/sites/deploymentStatus","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"properties":{"deploymentId":"9d0fc21d-4821-4425-b011-bf889ea84430","status":"BuildInProgress","numberOfInstancesInProgress":0,"numberOfInstancesSuccessful":0,"numberOfInstancesFailed":0,"failedInstancesLogs":null,"errors":null}}' headers: Cache-Control: - no-cache @@ -1191,13 +1034,13 @@ interactions: Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:33:00 GMT + - Fri, 10 Apr 2026 16:17:00 GMT Etag: - - '"1DC917FC4F67835"' + - '"1DCC90529ECA66B"' Expires: - "-1" Location: - - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deploymentStatus/35aee243-1c5f-4161-bb44-bc0b617809bf?api-version=2023-01-01&t=639053301471105263&c=MIIHhzCCBm-gAwIBAgITHgfeRdjJjlRVhUe_NgAAB95F2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMTE1MDk0NTI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPG3RgwOcGRGMa4cD-2W4yNNgHHOWwMfD5sQovtxoS6f1ImRPEn6w99dTM-5stP19OGxLABUU3FhA98LFkiqEvrwtOBj0ISFqErqLj2vPLkATDAtX6Qeo0XaJXIzIxxar10KwBCWIJ9jaBwRXiPGbon6pfKmpVV-lmMvWLHLg7_l_AneN2RjwOE0vjLpYd419cyVcVOebmxAOV7dWRN3S7akwe8-73_bZU2YHBZ-nS30x11jGr6_A0RMygG6XoooGmlp1mCNSSYB84JtvP2OvcEb_Szk3oA2znpx44hqZTvhSii6QmNiMlHy2S4YBMfcZJAN5oD8zzejILuwdbqr87ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQvp7uFK5rAraB69GHwRthFpsENNjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFycKwyoyMLHA50T8dYhE6YAAoOjHlV8cz8TynJf581-JTiVMN4MYb6CqwUJxIDLaLWaslL4ufoNgSpIeNU2fveOit4yCbzm9gu6U97Ojq5GfpALOYXfBGsNUPhdsVPm0nxC6XAjIGkyUz_W3X9sStlEX1t6euduQ6nbHcMUXUW3X7n67c0RaZuCrNU2d-mxwAAV3zvlWHSYWDg_ePoU01ElwjtZarux5Kdamw0I3AmgHQ9Jzj1Ys6XvZA2D9FScqfTsuRAAgY9BJNJ-QFJONWMgD1xGSpLBtVkRkbKKnCQqosOkbEY614Dg0y6hTWUeZJiR_2nH6YvNT-EdNz8WT_I&s=Y8sFGsgrefvfZKiPtJuUeqCAd7LbsfdRVm01z9RbxxeqcHox292-Z6DHpzPcqgm25d1Mjbzpm4JcUCTnFoFunoZeFLzlEU936ZSlXby5eEM-TJOJv2jsRMFo0qxR2hVZWBDm2Axh_Qso9tXZ3HdLkCO_2OX4aJY4cSJGKVYPq_9DqxIOg1SjGC_taPnGZSoakpU63yMqn0ms0RdU84hjOI9VQMJfUWi3wuib8prpH5akrlQfm1GRBRiZN3tGR0yYp2p2EYGOj7BjJnzuB5JpjOtdSyhHeBGgd6py448AN67kHeCQMbVCIkhzV7iqgVyEgdo0Q-_WGmEZanQerixVmg&h=RNrY-XrOgLoYXDXoiEiAGMilqKCul6oz3-3tm-aeB34 + - https://management.azure.com/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/deploymentStatus/9d0fc21d-4821-4425-b011-bf889ea84430?api-version=2023-01-01&t=639114350891228097&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=S23hyvf-LCZbNGi-EqYVCmPkCNvxY0B7rvAF2MAFvMACQtT4mx1fCZESjn2WFD2bvB_deFNFH3TMgf-Z8PSdCF2oY2PSlfozzZtYVorIjXJNRdUT8K8DQZS4GcBFlMSShhuDrGWcaCLYFVrtFsiTFO-Zo4lTtNG5froX_TYwY3ksI_XOZ3VjkruguWW0C5Aq93FhI1TlX6dKNGinRd--5ckB8BtNR0_6iW65j3a2npD7k4M7HuZPlsziEjTjfvrFy2fCPgT3YSd79H2PQw1ux8lvuPwsdLn2vHz-GH6k1LiXjkk5h5wiQhFynxC8kO3WvsMXDugcZljaEwQYROSM3g&h=9z_h_oeSkdPRqv35MetR1tEgrqR5Gd9puz_IzBFjQSM Pragma: - no-cache Retry-After: @@ -1211,25 +1054,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=4070b897-9ee6-4cec-ac9f-addac5f3c6e2/eastus2/bb56d879-6525-4e6e-a80f-99df825d078a + - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=b6c42cf3-59a8-498b-b962-63ef2a63e8fb/eastus2/c9aebe65-b37c-4bd7-8663-8d6911cd765e X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - bc9daecd-c216-45d9-9c49-9965fb40db6b + - f7161249-7eaa-4132-8b1f-460c23cd6861 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003301Z:bc9daecd-c216-45d9-9c49-9965fb40db6b + - EASTUS2:20260410T161701Z:f7161249-7eaa-4132-8b1f-460c23cd6861 X-Msedge-Ref: - - 'Ref A: B915F5D51B3B41299624DBB1DFBE0B66 Ref B: MWH011020809054 Ref C: 2026-01-30T00:32:54Z' + - 'Ref A: 7E3A5347FE234D11B04FE5353F738850 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:16:53Z' X-Powered-By: - ASP.NET status: 202 Accepted code: 202 - duration: 6.502692883s - - id: 17 + duration: 8.241270507s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1248,10 +1091,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deploymentStatus/35aee243-1c5f-4161-bb44-bc0b617809bf?api-version=2023-01-01&t=639053301471105263&c=MIIHhzCCBm-gAwIBAgITHgfeRdjJjlRVhUe_NgAAB95F2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMTE1MDk0NTI1WhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPG3RgwOcGRGMa4cD-2W4yNNgHHOWwMfD5sQovtxoS6f1ImRPEn6w99dTM-5stP19OGxLABUU3FhA98LFkiqEvrwtOBj0ISFqErqLj2vPLkATDAtX6Qeo0XaJXIzIxxar10KwBCWIJ9jaBwRXiPGbon6pfKmpVV-lmMvWLHLg7_l_AneN2RjwOE0vjLpYd419cyVcVOebmxAOV7dWRN3S7akwe8-73_bZU2YHBZ-nS30x11jGr6_A0RMygG6XoooGmlp1mCNSSYB84JtvP2OvcEb_Szk3oA2znpx44hqZTvhSii6QmNiMlHy2S4YBMfcZJAN5oD8zzejILuwdbqr87ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQvp7uFK5rAraB69GHwRthFpsENNjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFycKwyoyMLHA50T8dYhE6YAAoOjHlV8cz8TynJf581-JTiVMN4MYb6CqwUJxIDLaLWaslL4ufoNgSpIeNU2fveOit4yCbzm9gu6U97Ojq5GfpALOYXfBGsNUPhdsVPm0nxC6XAjIGkyUz_W3X9sStlEX1t6euduQ6nbHcMUXUW3X7n67c0RaZuCrNU2d-mxwAAV3zvlWHSYWDg_ePoU01ElwjtZarux5Kdamw0I3AmgHQ9Jzj1Ys6XvZA2D9FScqfTsuRAAgY9BJNJ-QFJONWMgD1xGSpLBtVkRkbKKnCQqosOkbEY614Dg0y6hTWUeZJiR_2nH6YvNT-EdNz8WT_I&s=Y8sFGsgrefvfZKiPtJuUeqCAd7LbsfdRVm01z9RbxxeqcHox292-Z6DHpzPcqgm25d1Mjbzpm4JcUCTnFoFunoZeFLzlEU936ZSlXby5eEM-TJOJv2jsRMFo0qxR2hVZWBDm2Axh_Qso9tXZ3HdLkCO_2OX4aJY4cSJGKVYPq_9DqxIOg1SjGC_taPnGZSoakpU63yMqn0ms0RdU84hjOI9VQMJfUWi3wuib8prpH5akrlQfm1GRBRiZN3tGR0yYp2p2EYGOj7BjJnzuB5JpjOtdSyhHeBGgd6py448AN67kHeCQMbVCIkhzV7iqgVyEgdo0Q-_WGmEZanQerixVmg&h=RNrY-XrOgLoYXDXoiEiAGMilqKCul6oz3-3tm-aeB34 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/deploymentStatus/9d0fc21d-4821-4425-b011-bf889ea84430?api-version=2023-01-01&t=639114350891228097&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=S23hyvf-LCZbNGi-EqYVCmPkCNvxY0B7rvAF2MAFvMACQtT4mx1fCZESjn2WFD2bvB_deFNFH3TMgf-Z8PSdCF2oY2PSlfozzZtYVorIjXJNRdUT8K8DQZS4GcBFlMSShhuDrGWcaCLYFVrtFsiTFO-Zo4lTtNG5froX_TYwY3ksI_XOZ3VjkruguWW0C5Aq93FhI1TlX6dKNGinRd--5ckB8BtNR0_6iW65j3a2npD7k4M7HuZPlsziEjTjfvrFy2fCPgT3YSd79H2PQw1ux8lvuPwsdLn2vHz-GH6k1LiXjkk5h5wiQhFynxC8kO3WvsMXDugcZljaEwQYROSM3g&h=9z_h_oeSkdPRqv35MetR1tEgrqR5Gd9puz_IzBFjQSM method: GET response: proto: HTTP/2.0 @@ -1261,7 +1104,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deploymentStatus/35aee243-1c5f-4161-bb44-bc0b617809bf","name":"35aee243-1c5f-4161-bb44-bc0b617809bf","type":"Microsoft.Web/sites/deploymentStatus","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"properties":{"deploymentId":"35aee243-1c5f-4161-bb44-bc0b617809bf","status":"RuntimeSuccessful","numberOfInstancesInProgress":0,"numberOfInstancesSuccessful":1,"numberOfInstancesFailed":0,"failedInstancesLogs":null,"errors":null}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/deploymentStatus/9d0fc21d-4821-4425-b011-bf889ea84430","name":"9d0fc21d-4821-4425-b011-bf889ea84430","type":"Microsoft.Web/sites/deploymentStatus","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"properties":{"deploymentId":"9d0fc21d-4821-4425-b011-bf889ea84430","status":"RuntimeSuccessful","numberOfInstancesInProgress":0,"numberOfInstancesSuccessful":1,"numberOfInstancesFailed":0,"failedInstancesLogs":null,"errors":null}}' headers: Cache-Control: - no-cache @@ -1270,9 +1113,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:36:07 GMT + - Fri, 10 Apr 2026 16:25:18 GMT Etag: - - '"1DC917FC4F67835"' + - '"1DCC90529ECA66B"' Expires: - "-1" Pragma: @@ -1286,25 +1129,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=4070b897-9ee6-4cec-ac9f-addac5f3c6e2/eastus2/b8bc20c9-5f83-4244-aa6e-97d1ae387c71 + - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=b6c42cf3-59a8-498b-b962-63ef2a63e8fb/eastus2/eb3311ae-f74a-41a6-8cdf-68138db09105 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - e9b041da-ce53-4d31-b5e8-9937eb35865c + - 385d9d6c-b909-449c-9281-835da2eef860 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003607Z:01753b8c-9986-43ae-932a-9747a420e9a4 + - EASTUS2:20260410T162518Z:59e5c42e-599b-4515-8a18-739f3661c970 X-Msedge-Ref: - - 'Ref A: 0AC2CCD508404AD284B5D66A3346FDE4 Ref B: MWH011020809054 Ref C: 2026-01-30T00:36:07Z' + - 'Ref A: 1532F257546E476799D3A50615AF4D6A Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:09Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 193.550947ms - - id: 18 + duration: 9.363763264s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1325,10 +1168,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -1336,20 +1179,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9217 + content_length: 8930 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"properties":{"name":"app-yswqbm6bq4kx2","state":"Running","hostNames":["app-yswqbm6bq4kx2.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2.azurewebsites.net","app-yswqbm6bq4kx2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:14:52.9666667","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2\\$app-yswqbm6bq4kx2","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1"}}' headers: Cache-Control: - no-cache Content-Length: - - "9217" + - "8930" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:36:07 GMT + - Fri, 10 Apr 2026 16:25:25 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC90529ECA66B Expires: - "-1" Pragma: @@ -1363,153 +1206,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 3ec34573-b392-4b15-9699-1190735ef1e7 + - 9a3c2670-e981-421e-9c15-3886f4323ae7 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003607Z:8c93e433-df89-46c1-a617-734e637fa56b + - EASTUS2:20260410T162525Z:facd66aa-90ed-4583-b920-efdd353a36d9 X-Msedge-Ref: - - 'Ref A: 635306C3878C477B8C3C6B06A72E151B Ref B: MWH011020809054 Ref C: 2026-01-30T00:36:07Z' + - 'Ref A: ABF3C90F70CC484F9C29D0F1A8FE1A23 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:18Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 393.27983ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1158 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.scm.azurewebsites.net - remote_addr: "" - request_uri: "" - body: !!binary | - UEsDBBQACAAIAM0DPlwAAAAAAAAAAAAAAAAJAAkAZGF0YS5qc29uVVQFAAGj+3tpquZSUF - DKTS0uTkxPVbJSUPJIzcnJV0grys9VcKwqLUpVcCwoUAhOLSrLTE5VVNIBqS5LLSrOzM8D - qTbUM9AzUOKq5QIEAAD//1BLBwg582GSSQAAAEcAAABQSwMEFAAIAAgAzQM+XAAAAAAAAA - AAAAAAABAACQByZXF1aXJlbWVudHMudHh0VVQFAAGj+3tpSstJLM7mSi/Ny0zOL8rjAgQA - AP//UEsHCOq+kCwVAAAADwAAAFBLAwQUAAgACADNAz5cAAAAAAAAAAAAAAAACQAJAHNlcn - Zlci5weVVUBQABo/t7aXxSQYvbPBC961fMN3uxwDiBbw8lVKUUktJLWzYLPQqtPa61tSUh - jXc3lP73IjnJJoXWhrH1pPfmaWZu/lvNKa4erFuRe4Jw4MG7/wUi7u0URoLdaNIPMCEAD4 - YhEs/RJeCBoPWOyXEC30Nn2DSPybsGEYWwU/CRIQOnf59EH/0EfRE8gkW9hjtKwbtEQuRE - aoErrZ2ZSGspxHsTQhP9zFThCuX1+m0wPGxyeIdSdNSDdR29VBlRiHIjAABu4CNx8d3ZSC - 37eIDngSIBDzZBaqMNDDbB6FvD1BXSgurORlDgU5Mlm87GbKw6rc1Dyt9K696O2a8s3FyS - glxQH7111atoDXguHC6sEjgeFtP5ebY8gA/kqrNiDRhRgknQv5475QQFfRPJdJU87y1tO9 - e5KNUw2Yn4EEihCWG0rWHr3erCDL20FBh2dqTPnnd+dt02Rh83fxW+clPmoZunkKqfSJmI - m4sbg/MMfRbFX7K+YiY2PCd1u769xv/h+HxOCmF7OA0PKAWo9WSs0xoX42X0FFjHuYfknm - z0rvlOXOHXL3f3WMOf8Lfth/2n++1eH/ffrNdreexzGcXZVYNPrHDdlBfrkkXlIMXvAAAA - //9QSwcIWBPbkcwBAABmAwAAUEsDBBQACAAIAM0DPlwAAAAAAAAAAAAAAAALAAkAc3Rhcn - R1cC50eHRVVAUAAaP7e2lKL83LTM4vylPQ1U3KzEuxNdADQwVd3ZLM3NT80hIFMwMDheLU - orLUIqvEggIuQAAAAP//UEsHCMvyTfM0AAAAMQAAAFBLAQIUABQACAAIAM0DPlw582GSSQ - AAAEcAAAAJAAkAAAAAAAAAAAAAAAAAAABkYXRhLmpzb25VVAUAAaP7e2lQSwECFAAUAAgA - CADNAz5c6r6QLBUAAAAPAAAAEAAJAAAAAAAAAAAAAACJAAAAcmVxdWlyZW1lbnRzLnR4dF - VUBQABo/t7aVBLAQIUABQACAAIAM0DPlxYE9uRzAEAAGYDAAAJAAkAAAAAAAAAAAAAAOUA - AABzZXJ2ZXIucHlVVAUAAaP7e2lQSwECFAAUAAgACADNAz5cy/JN8zQAAAAxAAAACwAJAA - AAAAAAAAAAAADxAgAAc3RhcnR1cC50eHRVVAUAAaP7e2lQSwUGAAAAAAQABAAJAQAAZwMA - AAAA - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "1158" - Content-Type: - - application/octet-stream - User-Agent: - - azsdk-go-zip-deploy/1.0.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/zipdeploy?isAsync=true - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Length: - - "0" - Date: - - Fri, 30 Jan 2026 00:36:40 GMT - Location: - - https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-01-30_00-36-40Z - Retryafter: - - "30" - Scm-Deployment-Id: - - 68c4ee75-d53d-4d26-8461-04331db0560b - Server: - - Kestrel - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - status: 202 Accepted - code: 202 - duration: 33.585493804s - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.scm.azurewebsites.net:443 - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-zip-deploy/1.0.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-01-30_00-36-40Z - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"68c4ee75-d53d-4d26-8461-04331db0560b","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created via a push deployment","progress":"","received_time":"2026-01-30T00:36:43.6649668Z","start_time":"2026-01-30T00:36:44.9641398Z","end_time":"2026-01-30T00:38:35.9421803Z","last_success_end_time":"2026-01-30T00:38:35.9421803Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://app-34ois7zchicre-staging.scm.azurewebsites.net/api/deployments/68c4ee75-d53d-4d26-8461-04331db0560b","log_url":"https://app-34ois7zchicre-staging.scm.azurewebsites.net/api/deployments/68c4ee75-d53d-4d26-8461-04331db0560b/log","site_name":"app-34ois7zchicre","build_summary":{"errors":[],"warnings":[]}}' - headers: - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 30 Jan 2026 00:38:36 GMT - Server: - - Kestrel - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - Vary: - - Accept-Encoding - status: 200 OK - code: 200 - duration: 628.446304ms - - id: 21 + duration: 7.205805513s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1530,10 +1243,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -1541,22 +1254,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9158 + content_length: 9001 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"properties":{"name":"app-34ois7zchicre","state":"Running","hostNames":["app-34ois7zchicre.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre.azurewebsites.net","app-34ois7zchicre.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:26.5633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre\\$app-34ois7zchicre","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871"}}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "9158" + - "9001" Content-Type: - - application/json + - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:38:37 GMT + - Fri, 10 Apr 2026 16:25:26 GMT Etag: - - '"1DC917FC4F67835"' - Expires: - - "-1" + - 1DCC9053AB50435 Pragma: - no-cache Strict-Transport-Security: @@ -1568,23 +1279,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 + X-Ms-Original-Request-Ids: + - bb46bfe6-4520-45f1-99dc-d04e7d062dac X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 840fb191-440f-48c3-9228-cf290134ce60 + - e1fd7e80-80d9-4973-8cf9-a44137ebd13e X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003837Z:572f620a-62e0-478a-9f86-420b89400ba3 + - EASTUS2:20260410T162526Z:e1fd7e80-80d9-4973-8cf9-a44137ebd13e X-Msedge-Ref: - - 'Ref A: F9323A485EEC4D91B1B18A483F777411 Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:38:37Z' + - 'Ref A: 8B5C322D3DA6457BB05A8F2173759E79 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:25Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 398.466464ms - - id: 22 + duration: 530.327967ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1605,10 +1318,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -1616,20 +1329,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9051 + content_length: 8989 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}]}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}' headers: Cache-Control: - no-cache Content-Length: - - "9051" + - "8989" Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Fri, 30 Jan 2026 00:38:37 GMT + - Fri, 10 Apr 2026 16:25:31 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC9053AB50435 + Expires: + - "-1" Pragma: - no-cache Strict-Transport-Security: @@ -1641,25 +1356,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - X-Ms-Original-Request-Ids: - - 2b9b4ec5-5a2f-4b9f-9e9f-dedeb2103461 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 588ef1ea-72bc-48de-92d6-452f40c1cf73 + - 2941f0aa-88eb-46e9-8d68-e0e44e6c3bbe X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003837Z:588ef1ea-72bc-48de-92d6-452f40c1cf73 + - EASTUS2:20260410T162531Z:f8e1143f-f5c2-461a-b278-0ff17ee8a441 X-Msedge-Ref: - - 'Ref A: CA1A496441E04606BFD671D9EC8B96BE Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:38:37Z' + - 'Ref A: D62F60C3A3FA47ABB2AE737B2EEFCDDC Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:26Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 280.905279ms - - id: 23 + duration: 5.281309429s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1680,10 +1393,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging?api-version=2023-01-01 + - 265ca9910b65c520c857eac24ae4e3d9 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1691,50 +1404,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9217 + content_length: 325 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "9217" + - "325" Content-Type: - - application/json + - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:38:38 GMT - Etag: - - '"1DC917FD3EC6CF5"' + - Fri, 10 Apr 2026 16:25:31 GMT 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: - - 4d19d9d4b3a31b3dc0e203d15347aee9 + - 265ca9910b65c520c857eac24ae4e3d9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 4b5f87d6-d188-4dc2-8735-9e1f28a68543 + - fd8d2151-c487-49a4-9195-e27857f9cc3d X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003838Z:64014721-b294-4eb6-b102-d76295e5738b + - SOUTHCENTRALUS:20260410T162532Z:fd8d2151-c487-49a4-9195-e27857f9cc3d X-Msedge-Ref: - - 'Ref A: BC18F43C8FCB48C0A4B9ECB6CD1E735B Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:38:37Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 285AC693F20448D69E363B8F19ADC128 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:31Z' status: 200 OK code: 200 - duration: 402.865994ms - - id: 24 + duration: 623.0213ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1742,23 +1449,78 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: aka.ms remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + 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, 10 Apr 2026 16:25:32 GMT + Expires: + - Fri, 10 Apr 2026 16:25:32 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: 272.174154ms + - id: 21 + 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.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json method: GET response: proto: HTTP/2.0 @@ -1766,44 +1528,4415 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 198422 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 (Preview)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Preview)", + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service \u003cservice-name\u003e --src \u003csource-slot\u003e --dst \u003cdestination-slot\u003e" + } + ], + "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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "325" + - "198422" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin Date: - - Fri, 30 Jan 2026 00:38:38 GMT + - Fri, 10 Apr 2026 16:25:32 GMT + Etag: + - W/"9f5a0fdff6dcbcb461544d405aa6787769355ddf215e6aa09e4a71e48ff87e9c" Expires: - - "-1" - Pragma: - - no-cache + - Fri, 10 Apr 2026 16:30:32 GMT + Source-Age: + - "22" Strict-Transport-Security: - - max-age=31536000; includeSubDomains + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish X-Cache: - - CONFIG_NOCACHE + - HIT + X-Cache-Hits: + - "1" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 4d19d9d4b3a31b3dc0e203d15347aee9 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - bc0220c6-956c-41fa-9923-e2f2a0c42bba - X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003838Z:bc0220c6-956c-41fa-9923-e2f2a0c42bba - X-Msedge-Ref: - - 'Ref A: 1954BB24C98940CA96AD273A66B3A8FA Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:38:38Z' + X-Fastly-Request-Id: + - 08d07d5734af48cefc902a39562b59c31d9763b0 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 8BB4:3CAAF0:36AEEE:42F3A1:69D84D35 + X-Served-By: + - cache-pao-kpao1770048-PAO + X-Timer: + - S1775838333.760352,VS0,VE1 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 138.777728ms - - id: 25 + duration: 61.923223ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1811,7 +5944,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre.azurewebsites.net + host: app-yswqbm6bq4kx2.azurewebsites.net remote_addr: "" request_uri: "" body: "" @@ -1823,7 +5956,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-34ois7zchicre.azurewebsites.net:443/ + url: https://app-yswqbm6bq4kx2.azurewebsites.net:443/ method: GET response: proto: HTTP/1.1 @@ -1844,16 +5977,16 @@ interactions: Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:38:38 GMT + - Fri, 10 Apr 2026 16:25:34 GMT Server: - gunicorn Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2.azurewebsites.net status: 200 OK code: 200 - duration: 459.469472ms - - id: 26 + duration: 1.492093598s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1861,7 +5994,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -1872,8 +6005,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry method: GET response: proto: HTTP/1.1 @@ -1881,29 +6014,36 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 71 + content_length: 0 uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } + body: "" headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "71" - Content-Type: - - application/json + - "0" Date: - - Fri, 30 Jan 2026 00:39:57 GMT + - Fri, 10 Apr 2026 16:25:34 GMT + Expires: + - Fri, 10 Apr 2026 16:25:34 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: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 1m19.239281776s - - id: 27 + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 91.990858ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1911,23 +6051,21 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json method: GET response: proto: HTTP/2.0 @@ -1935,44 +6073,4415 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 198422 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 (Preview)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Preview)", + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service \u003cservice-name\u003e --src \u003csource-slot\u003e --dst \u003cdestination-slot\u003e" + } + ], + "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" + } + } + } + ] + } + ] + } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' Cache-Control: - - no-cache + - max-age=300 Content-Length: - - "325" + - "198422" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - - application/json; charset=utf-8 + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin Date: - - Fri, 30 Jan 2026 00:39:58 GMT + - Fri, 10 Apr 2026 16:25:34 GMT + Etag: + - W/"9f5a0fdff6dcbcb461544d405aa6787769355ddf215e6aa09e4a71e48ff87e9c" Expires: - - "-1" - Pragma: - - no-cache + - Fri, 10 Apr 2026 16:30:34 GMT + Source-Age: + - "24" Strict-Transport-Security: - - max-age=31536000; includeSubDomains + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish X-Cache: - - CONFIG_NOCACHE + - HIT + X-Cache-Hits: + - "2" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" - X-Ms-Request-Id: - - d67915bf-2033-4c1e-9287-ae57e2192c54 - X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003958Z:d67915bf-2033-4c1e-9287-ae57e2192c54 - X-Msedge-Ref: - - 'Ref A: CC34C29E776B4FAA9757E999E850076E Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:39:58Z' + X-Fastly-Request-Id: + - 89da69676d8f095d4ba80cb115908529b7f87e69 + X-Frame-Options: + - deny + X-Github-Request-Id: + - 8BB4:3CAAF0:36AEEE:42F3A1:69D84D35 + X-Served-By: + - cache-pao-kpao1770048-PAO + X-Timer: + - S1775838334.479141,VS0,VE0 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 121.640102ms - - id: 28 + duration: 9.533688ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1993,10 +10502,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2004,18 +10513,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "472" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:39:59 GMT + - Fri, 10 Apr 2026 16:25:34 GMT Expires: - "-1" Pragma: @@ -2027,21 +10536,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 36d4b90c-3801-49bc-bbb1-8ac0e1d3d8ab + - 3babf8ba-4bc5-4c81-a401-7d036f45362f X-Ms-Routing-Request-Id: - - WESTUS2:20260130T003959Z:36d4b90c-3801-49bc-bbb1-8ac0e1d3d8ab + - SOUTHCENTRALUS:20260410T162535Z:3babf8ba-4bc5-4c81-a401-7d036f45362f X-Msedge-Ref: - - 'Ref A: 792607ED67424CC29291B96BBD71F0A5 Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:39:58Z' + - 'Ref A: E6A16402B68C40BC91BFCF021697D241 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:34Z' status: 200 OK code: 200 - duration: 558.479982ms - - id: 29 + duration: 457.605831ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -2062,10 +10571,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2073,18 +10582,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 472 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-service-name":"api","azd-env-name":"azdtest-d347996"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "472" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:39:59 GMT + - Fri, 10 Apr 2026 16:25:35 GMT Expires: - "-1" Pragma: @@ -2096,21 +10605,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 83e90fb6-a291-4766-ab24-8dae29e49494 + - 2f7c287a-6279-41c7-8e6c-297b5a18c002 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T003959Z:83e90fb6-a291-4766-ab24-8dae29e49494 + - EASTUS2:20260410T162535Z:2f7c287a-6279-41c7-8e6c-297b5a18c002 X-Msedge-Ref: - - 'Ref A: 2E9AF5FD5EEA4E73A4CFFF96FDE7B2E2 Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:39:59Z' + - 'Ref A: F3310D61805847E8B71BF2356036F6E6 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:35Z' status: 200 OK code: 200 - duration: 170.965827ms - - id: 30 + duration: 217.987568ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -2131,10 +10640,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2142,18 +10651,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "472" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:40:00 GMT + - Fri, 10 Apr 2026 16:25:36 GMT Expires: - "-1" Pragma: @@ -2165,21 +10674,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - c6a5c195-e54d-45f5-af57-45d5d58ea21d + - 730c2c70-e28d-4864-bf17-24fb92dc52db X-Ms-Routing-Request-Id: - - WESTUS2:20260130T004000Z:c6a5c195-e54d-45f5-af57-45d5d58ea21d + - SOUTHCENTRALUS:20260410T162536Z:730c2c70-e28d-4864-bf17-24fb92dc52db X-Msedge-Ref: - - 'Ref A: BF651A993E0244CFAEE6B0DFDCF2CE5D Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:39:59Z' + - 'Ref A: BFB1278ABAEC46809DE1FF2403464E58 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:35Z' status: 200 OK code: 200 - duration: 1.004483119s - - id: 31 + duration: 1.045544708s + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2200,10 +10709,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deployments?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27api%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2211,57 +10720,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 472 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/deployments/35aee243-1c5f-4161-bb44-bc0b617809bf","name":"app-34ois7zchicre/35aee243-1c5f-4161-bb44-bc0b617809bf","type":"Microsoft.Web/sites/deployments","location":"East US 2","properties":{"id":"35aee243-1c5f-4161-bb44-bc0b617809bf","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created via a push deployment","progress":"","received_time":"2026-01-30T00:32:58.356054Z","start_time":"2026-01-30T00:32:59.9249994Z","end_time":"2026-01-30T00:34:34.0599324Z","last_success_end_time":"2026-01-30T00:34:34.0599324Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://app-34ois7zchicre.scm.azurewebsites.net/api/deployments/35aee243-1c5f-4161-bb44-bc0b617809bf","log_url":"https://app-34ois7zchicre.scm.azurewebsites.net/api/deployments/35aee243-1c5f-4161-bb44-bc0b617809bf/log","site_name":"app-34ois7zchicre","build_summary":{"errors":[],"warnings":[]}}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","managedBy":"","location":"eastus2","identity":{"principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","type":"SystemAssigned"},"tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1091" + - "472" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:40:03 GMT - Etag: - - '"8de5f9715dbe3c9"' + - Fri, 10 Apr 2026 16:25:36 GMT Expires: - "-1" Pragma: - no-cache - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre.scm.azurewebsites.net Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Aspnet-Version: - - 4.0.30319 X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - X-Ms-Operation-Identifier: - - tenantId=70a036f6-8e4d-4615-bad6-149c02e7720d,objectId=4070b897-9ee6-4cec-ac9f-addac5f3c6e2/eastus2/fd36b674-d21c-461b-8990-a24699992782 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3748" + - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "248" + - "249" X-Ms-Request-Id: - - 827b4ce9-982b-4cdc-bc83-1f9a7912761d + - c690e1a7-98d9-42b1-b007-6fb0a8274ae6 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004003Z:827b4ce9-982b-4cdc-bc83-1f9a7912761d + - EASTUS2:20260410T162536Z:c690e1a7-98d9-42b1-b007-6fb0a8274ae6 X-Msedge-Ref: - - 'Ref A: B3024791538E49539EF477A0BCAF31DE Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:40:00Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 8060EE8E48CC48BEA57AEBDDA041273A Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:36Z' status: 200 OK code: 200 - duration: 3.353661094s - - id: 32 + duration: 342.48845ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2282,10 +10778,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -2293,20 +10789,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9051 + content_length: 9001 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "9051" + - "9001" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:40:04 GMT + - Fri, 10 Apr 2026 16:25:38 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC9053AB50435 Pragma: - no-cache Strict-Transport-Security: @@ -2318,25 +10814,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Original-Request-Ids: - - 6657c84c-91c5-4263-9149-7f457ec06bdf + - 6d27ae98-2974-4d78-a5a5-b9fb838c4f36 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "3749" + - "3748" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "249" + - "248" X-Ms-Request-Id: - - f415cf54-8de4-4808-9e04-97ea37aee2f3 + - ddb70f07-0217-4c4e-bae0-65250df33378 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004004Z:f415cf54-8de4-4808-9e04-97ea37aee2f3 + - EASTUS2:20260410T162538Z:ddb70f07-0217-4c4e-bae0-65250df33378 X-Msedge-Ref: - - 'Ref A: 7FEC65CF3B8B4294A73811033098DD90 Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:40:03Z' + - 'Ref A: E422C18BEC0B4058BB509F734238FAC0 Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:36Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 457.665914ms - - id: 33 + duration: 1.87571909s + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2357,10 +10853,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -2368,20 +10864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9217 + content_length: 8989 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}' headers: Cache-Control: - no-cache Content-Length: - - "9217" + - "8989" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:40:05 GMT + - Fri, 10 Apr 2026 16:25:39 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC9053AB50435 Expires: - "-1" Pragma: @@ -2395,23 +10891,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 610d44f4-b781-4520-ad8f-2b88c30cbd5c + - 517f60c5-57c0-4cc8-a78f-dfcb6475092b X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004005Z:21ca3970-f68a-450c-aa25-941c1e216d4a + - EASTUS2:20260410T162539Z:633f9303-d481-4b69-b2d4-56f58b8f8741 X-Msedge-Ref: - - 'Ref A: 8182B43206DC4A068D3D9C42A6B87E69 Ref B: CO6AA3150217023 Ref C: 2026-01-30T00:40:04Z' + - 'Ref A: FFCE94B2390F4B6592037A7CB220526A Ref B: SN4AA2022303017 Ref C: 2026-04-10T16:25:38Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 897.246109ms - - id: 34 + duration: 1.109489478s + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2419,16 +10915,16 @@ interactions: content_length: 1148 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.scm.azurewebsites.net + host: app-yswqbm6bq4kx2-staging.scm.azurewebsites.net remote_addr: "" request_uri: "" body: !!binary | - UEsDBBQACAAIAP0EPlwAAAAAAAAAAAAAAAAJAAkAZGF0YS5qc29uVVQFAAHe/XtpquZSUF + UEsDBBQACAAIADFLilwAAAAAAAAAAAAAAAAJAAkAZGF0YS5qc29uVVQFAAF+JNlpquZSUF DKTS0uTkxPVbJSUAotSEksSU1RSEktyMmvzE3NK1FU0gGpKUstKs7MzwOpMdIz0DNQ4qrl - AgQAAP//UEsHCPur4yw/AAAAPQAAAFBLAwQUAAgACADNAz5cAAAAAAAAAAAAAAAAEAAJAH - JlcXVpcmVtZW50cy50eHRVVAUAAaP7e2lKy0kszuZKL83LTM4vyuMCBAAA//9QSwcI6r6Q - LBUAAAAPAAAAUEsDBBQACAAIAM0DPlwAAAAAAAAAAAAAAAAJAAkAc2VydmVyLnB5VVQFAA - Gj+3tpfFJBi9s8EL3rV8w3e7HAOIFvDyVUpRSS0ktbNgs9Cq09rrW1JSGNdzeU/vciOckm + AgQAAP//UEsHCPur4yw/AAAAPQAAAFBLAwQUAAgACAC2SYpcAAAAAAAAAAAAAAAAEAAJAH + JlcXVpcmVtZW50cy50eHRVVAUAAbgh2WlKy0kszuZKL83LTM4vyuMCBAAA//9QSwcI6r6Q + LBUAAAAPAAAAUEsDBBQACAAIALZJilwAAAAAAAAAAAAAAAAJAAkAc2VydmVyLnB5VVQFAA + G4IdlpfFJBi9s8EL3rV8w3e7HAOIFvDyVUpRSS0ktbNgs9Cq09rrW1JSGNdzeU/vciOckm hdaGsfWk9+ZpZm7+W80prh6sW5F7gnDgwbv/BSLu7RRGgt1o0g8wIQAPhiESz9El4IGg9Y 7JcQLfQ2fYNI/JuwYRhbBT8JEhA6d/n0Qf/QR9ETyCRb2GO0rBu0RC5ERqgSutnZlIaynE exNCE/3MVOEK5fX6bTA8bHJ4h1J01IN1Hb1UGVGIciMAAG7gI3Hx3dlILft4gOeBIgEPNk @@ -2437,14 +10933,14 @@ interactions: EJYbStYevd6sIMvbQUGHZ2pM+ed3523TZGHzd/Fb5yU+ahm6eQqp9ImYibixuD8wx9FsVf sr5iJjY8J3W7vr3G/+H4fE4KYXs4DQ8oBaj1ZKzTGhfjZfQUWMe5h+SebPSu+U5c4dcvd/ dYw5/wt+2H/af77V4f99+s12t57HMZxdlVg0+scN2UF+uSReUgxe8AAAD//1BLBwhYE9uR - zAEAAGYDAABQSwMEFAAIAAgAzQM+XAAAAAAAAAAAAAAAAAsACQBzdGFydHVwLnR4dFVUBQ - ABo/t7aUovzctMzi/KU9DVTcrMS7E10ANDBV3dkszc1PzSEgUzAwOF4tSistQiq8SCAi5A - AAAA//9QSwcIy/JN8zQAAAAxAAAAUEsBAhQAFAAIAAgA/QQ+XPur4yw/AAAAPQAAAAkACQ - AAAAAAAAAAAAAAAAAAAGRhdGEuanNvblVUBQAB3v17aVBLAQIUABQACAAIAM0DPlzqvpAs - FQAAAA8AAAAQAAkAAAAAAAAAAAAAAH8AAAByZXF1aXJlbWVudHMudHh0VVQFAAGj+3tpUE - sBAhQAFAAIAAgAzQM+XFgT25HMAQAAZgMAAAkACQAAAAAAAAAAAAAA2wAAAHNlcnZlci5w - eVVUBQABo/t7aVBLAQIUABQACAAIAM0DPlzL8k3zNAAAADEAAAALAAkAAAAAAAAAAAAAAO - cCAABzdGFydHVwLnR4dFVUBQABo/t7aVBLBQYAAAAABAAEAAkBAABdAwAAAAA= + zAEAAGYDAABQSwMEFAAIAAgAtkmKXAAAAAAAAAAAAAAAAAsACQBzdGFydHVwLnR4dFVUBQ + ABuCHZaUovzctMzi/KU9DVTcrMS7E10ANDBV3dkszc1PzSEgUzAwOF4tSistQiq8SCAi5A + AAAA//9QSwcIy/JN8zQAAAAxAAAAUEsBAhQAFAAIAAgAMUuKXPur4yw/AAAAPQAAAAkACQ + AAAAAAAAAAAAAAAAAAAGRhdGEuanNvblVUBQABfiTZaVBLAQIUABQACAAIALZJilzqvpAs + FQAAAA8AAAAQAAkAAAAAAAAAAAAAAH8AAAByZXF1aXJlbWVudHMudHh0VVQFAAG4IdlpUE + sBAhQAFAAIAAgAtkmKXFgT25HMAQAAZgMAAAkACQAAAAAAAAAAAAAA2wAAAHNlcnZlci5w + eVVUBQABuCHZaVBLAQIUABQACAAIALZJilzL8k3zNAAAADEAAAALAAkAAAAAAAAAAAAAAO + cCAABzdGFydHVwLnR4dFVUBQABuCHZaVBLBQYAAAAABAAEAAkBAABdAwAAAAA= form: {} headers: Accept: @@ -2458,10 +10954,10 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - azsdk-go-zip-deploy/1.0.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-zip-deploy/1.0.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/zipdeploy?isAsync=true + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://app-yswqbm6bq4kx2-staging.scm.azurewebsites.net:443/api/zipdeploy?isAsync=true method: POST response: proto: HTTP/1.1 @@ -2476,22 +10972,22 @@ interactions: Content-Length: - "0" Date: - - Fri, 30 Jan 2026 00:40:05 GMT + - Fri, 10 Apr 2026 16:26:59 GMT Location: - - https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-01-30_00-40-06Z + - https://app-yswqbm6bq4kx2-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-04-10_16-27-00Z Retryafter: - "30" Scm-Deployment-Id: - - 2df5f121-557b-4559-8303-aa885708cbc6 + - 1253f3eb-02f5-4655-880a-403a9472c651 Server: - Kestrel Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2-staging.scm.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2-staging.scm.azurewebsites.net status: 202 Accepted code: 202 - duration: 1.058154567s - - id: 35 + duration: 1m20.667910014s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2499,7 +10995,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.scm.azurewebsites.net:443 + host: app-yswqbm6bq4kx2-staging.scm.azurewebsites.net:443 remote_addr: "" request_uri: "" body: "" @@ -2510,10 +11006,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-zip-deploy/1.0.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-zip-deploy/1.0.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://app-34ois7zchicre-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-01-30_00-40-06Z + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://app-yswqbm6bq4kx2-staging.scm.azurewebsites.net:443/api/deployments/latest?deployer=Push-Deployer&time=2026-04-10_16-27-00Z method: GET response: proto: HTTP/1.1 @@ -2524,23 +11020,23 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"2df5f121-557b-4559-8303-aa885708cbc6","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created via a push deployment","progress":"","received_time":"2026-01-30T00:40:09.7125478Z","start_time":"2026-01-30T00:40:11.0754348Z","end_time":"2026-01-30T00:41:31.3469865Z","last_success_end_time":"2026-01-30T00:41:31.3469865Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://app-34ois7zchicre-staging.scm.azurewebsites.net/api/deployments/2df5f121-557b-4559-8303-aa885708cbc6","log_url":"https://app-34ois7zchicre-staging.scm.azurewebsites.net/api/deployments/2df5f121-557b-4559-8303-aa885708cbc6/log","site_name":"app-34ois7zchicre","build_summary":{"errors":[],"warnings":[]}}' + body: '{"id":"1253f3eb-02f5-4655-880a-403a9472c651","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created via a push deployment","progress":"","received_time":"2026-04-10T16:27:08.9098538Z","start_time":"2026-04-10T16:27:10.9694029Z","end_time":"2026-04-10T16:35:24.385861Z","last_success_end_time":"2026-04-10T16:35:24.385861Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://app-yswqbm6bq4kx2-staging.scm.azurewebsites.net/api/deployments/1253f3eb-02f5-4655-880a-403a9472c651","log_url":"https://app-yswqbm6bq4kx2-staging.scm.azurewebsites.net/api/deployments/1253f3eb-02f5-4655-880a-403a9472c651/log","site_name":"app-yswqbm6bq4kx2","build_summary":{"errors":[],"warnings":[]}}' headers: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:41:37 GMT + - Fri, 10 Apr 2026 16:35:25 GMT Server: - Kestrel Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.scm.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2-staging.scm.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2-staging.scm.azurewebsites.net Vary: - Accept-Encoding status: 200 OK code: 200 - duration: 3.485210934s - - id: 36 + duration: 720.471965ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2561,10 +11057,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -2572,20 +11068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9158 + content_length: 8930 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre","name":"app-34ois7zchicre","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"properties":{"name":"app-34ois7zchicre","state":"Running","hostNames":["app-34ois7zchicre.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre.azurewebsites.net","app-34ois7zchicre.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:26.5633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre\\$app-34ois7zchicre","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee","azd-service-name":"api"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"8f49bb82-d5eb-4640-a4e2-ef28fd49b871"}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2","name":"app-yswqbm6bq4kx2","type":"Microsoft.Web/sites","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"properties":{"name":"app-yswqbm6bq4kx2","state":"Running","hostNames":["app-yswqbm6bq4kx2.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2.azurewebsites.net","app-yswqbm6bq4kx2.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:14:52.9666667","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2\\$app-yswqbm6bq4kx2","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996","azd-service-name":"api"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"a545d7ea-6d5e-4d02-86bf-0a97e102e4c1"}}' headers: Cache-Control: - no-cache Content-Length: - - "9158" + - "8930" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:41:40 GMT + - Fri, 10 Apr 2026 16:35:27 GMT Etag: - - '"1DC917FC4F67835"' + - 1DCC90529ECA66B Expires: - "-1" Pragma: @@ -2599,23 +11095,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - f315af35-85b4-437a-b6f8-9bc05af2a3b9 + - a58bd330-244a-464e-9ec2-7ae1b1f5ad6c X-Ms-Routing-Request-Id: - - WESTUS2:20260130T004140Z:e25b3d1e-81eb-4816-82aa-571f1b407003 + - SOUTHCENTRALUS:20260410T163527Z:32dbc6cf-0695-4284-8141-7f41913c9c61 X-Msedge-Ref: - - 'Ref A: 65D6E3BFDBF6436AB3DD3AD36FA727C9 Ref B: CO6AA3150220037 Ref C: 2026-01-30T00:41:38Z' + - 'Ref A: CBDCF4C795E54C76BA7BA16DEBDC0B2E Ref B: SN4AA2022305021 Ref C: 2026-04-10T16:35:26Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 1.60970685s - - id: 37 + duration: 1.462478155s + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2636,10 +11132,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -2647,20 +11143,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9051 + content_length: 9001 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":true,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "9051" + - "9001" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:41:40 GMT + - Fri, 10 Apr 2026 16:35:27 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC9053AB50435 Pragma: - no-cache Strict-Transport-Security: @@ -2672,25 +11168,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Original-Request-Ids: - - f4245b02-0b33-4adb-bc1b-db39ec0dabab + - eaa5b9a1-e4b1-4348-91be-5a8e0ebd9b2d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 3cae239b-3fbb-4cd7-989c-3f46a4aec036 + - 01913acb-9c0e-4f9b-b50c-b76d607d9b51 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004140Z:3cae239b-3fbb-4cd7-989c-3f46a4aec036 + - EASTUS2:20260410T163528Z:01913acb-9c0e-4f9b-b50c-b76d607d9b51 X-Msedge-Ref: - - 'Ref A: 834903D48D10469DB35FE4D4C0F6F82D Ref B: CO6AA3150220037 Ref C: 2026-01-30T00:41:40Z' + - 'Ref A: 9D16CC18589C469AAA3262A3B5733E7B Ref B: SN4AA2022305021 Ref C: 2026-04-10T16:35:27Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 229.293888ms - - id: 38 + duration: 597.252045ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2711,10 +11207,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappservice/v2.3.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armappservice/v2.3.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging?api-version=2023-01-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging?api-version=2023-01-01 method: GET response: proto: HTTP/2.0 @@ -2722,20 +11218,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 9217 + content_length: 8989 uncompressed: false - body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/sites/app-34ois7zchicre/slots/staging","name":"app-34ois7zchicre/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-lb168ee"},"properties":{"name":"app-34ois7zchicre(staging)","state":"Running","hostNames":["app-34ois7zchicre-staging.azurewebsites.net"],"webSpace":"rg-azdtest-lb168ee-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-275.api.azurewebsites.windows.net:454/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-lb168ee-EastUS2webspace-Linux/sites/app-34ois7zchicre","repositorySiteName":"app-34ois7zchicre","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-34ois7zchicre-staging.azurewebsites.net","app-34ois7zchicre-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-34ois7zchicre-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-34ois7zchicre-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee/providers/Microsoft.Web/serverfarms/plan-34ois7zchicre","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-01-30T00:31:51.6633333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-34ois7zchicre__81dd","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.144.23","possibleInboundIpAddresses":"20.119.144.23","inboundIpv6Address":"2603:1030:40c:7::21","possibleInboundIpv6Addresses":"2603:1030:40c:7::21","ftpUsername":"app-34ois7zchicre__staging\\$app-34ois7zchicre__staging","ftpsHostName":"ftps://waws-prod-bn1-275.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,20.119.144.23","possibleOutboundIpAddresses":"52.184.247.113,52.184.242.76,52.184.242.77,52.184.243.30,52.184.243.31,52.184.243.97,52.251.8.110,52.184.243.24,52.184.243.172,52.184.244.18,52.184.244.148,52.184.244.197,52.184.245.77,52.184.245.167,52.184.245.171,52.184.245.175,52.184.245.248,52.184.246.8,52.184.246.96,52.184.246.117,52.184.246.179,52.184.246.181,52.184.247.52,52.184.247.84,52.184.247.114,52.184.247.115,52.184.247.206,52.184.247.207,52.184.243.16,52.184.243.17,20.119.144.23","outboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","possibleOutboundIpv6Addresses":"2603:1030:403:15::1de,2603:1030:403:15::1df,2603:1030:403:5::258,2603:1030:403:7::11e,2603:1030:403:13::1b4,2603:1030:403:5::259,2603:1030:403:13::1a4,2603:1030:403:5::162,2603:1030:403:12::1f6,2603:1030:403:7::203,2603:1030:403:5::24a,2603:1030:403:15::5f3,2603:1030:403:6::266,2603:1030:403:7::207,2603:1030:403:6::267,2603:1030:403:13::1b1,2603:1030:403:12::1f7,2603:1030:403:13::1b2,2603:1030:403:17::1a7,2603:1030:403:11::20e,2603:1030:403:5::257,2603:1030:403:13::1b3,2603:1030:403:16::1b0,2603:1030:403:10::2cd,2603:1030:403:3::847,2603:1030:403:7::201,2603:1030:403:7::202,2603:1030:403:11::20f,2603:1030:403:11::210,2603:1030:403:17::1a8,2603:1030:40c:7::21,2603:10e1:100:2::1477:9017","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-275","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-lb168ee"},"resourceGroup":"rg-azdtest-lb168ee","defaultHostName":"app-34ois7zchicre-staging.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":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers","RouteGeoCapacityClientTrafficToV2","RouteOperationClientTrafficToV2","RouteGeoPlanClientTrafficToV2","RouteGeoSourceControlKeyClientTrafficToV2","RouteGeoUserClientTrafficToV2"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"56e06bc3-561c-44d5-bd7f-627c0b8189df"}}' + body: '{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996/providers/Microsoft.Web/sites/app-yswqbm6bq4kx2/slots/staging","name":"app-yswqbm6bq4kx2/staging","type":"Microsoft.Web/sites/slots","kind":"app,linux","location":"East US 2","tags":{"azd-env-name":"azdtest-d347996"},"properties":{"name":"app-yswqbm6bq4kx2(staging)","state":"Running","hostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net"],"webSpace":"rg-azdtest-d347996-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-259.api.azurewebsites.windows.net:455/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/webspaces/rg-azdtest-d347996-EastUS2webspace-Linux/sites/app-yswqbm6bq4kx2","repositorySiteName":"app-yswqbm6bq4kx2","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["app-yswqbm6bq4kx2-staging.azurewebsites.net","app-yswqbm6bq4kx2-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app-yswqbm6bq4kx2-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app-yswqbm6bq4kx2-staging.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-d347996/providers/Microsoft.Web/serverfarms/plan-yswqbm6bq4kx2","reserved":true,"isXenon":false,"hyperV":false,"sandboxType":null,"lastModifiedTimeUtc":"2026-04-10T16:15:21.1233333","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":"PYTHON|3.11","windowsFxVersion":null,"sandboxType":null,"windowsConfiguredStacks":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"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":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false,"webJobsEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"app-yswqbm6bq4kx2__aaf6","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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":"app,linux","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"20.119.128.19","possibleInboundIpAddresses":"20.119.128.19","inboundIpv6Address":"2603:1030:40c:5::1f","possibleInboundIpv6Addresses":"2603:1030:40c:5::1f","ftpUsername":"app-yswqbm6bq4kx2__staging\\$app-yswqbm6bq4kx2__staging","ftpsHostName":"ftps://waws-prod-bn1-259.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,20.119.128.19","possibleOutboundIpAddresses":"4.153.55.153,4.153.55.163,4.153.55.175,4.153.55.177,4.153.55.178,4.153.55.184,4.153.54.159,4.153.54.167,4.153.54.208,4.153.54.250,4.153.54.254,4.153.55.7,4.153.55.55,4.153.55.60,4.153.55.74,4.153.55.85,4.153.55.89,4.153.55.95,4.153.55.98,4.153.55.102,4.153.54.143,4.153.55.132,4.153.55.134,4.153.55.144,4.153.55.186,4.153.55.191,4.153.55.196,4.153.55.203,4.153.55.207,4.153.55.213,20.119.128.19","outboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","possibleOutboundIpv6Addresses":"2603:1030:403:11::208,2603:1030:403:6::258,2603:1030:403:5::240,2603:1030:403:6::259,2603:1030:403:15::154,2603:1030:403:10::2c3,2603:1030:403:11::206,2603:1030:403:15::ca,2603:1030:403:17::19a,2603:1030:403:3::dbd,2603:1030:403:3::4d0,2603:1030:403:7::110,2603:1030:403:3::4d4,2603:1030:403:10::2bf,2603:1030:403:5::23d,2603:1030:403:11::207,2603:1030:403:13::194,2603:1030:403:5::23e,2603:1030:403:3::4db,2603:1030:403:6::257,2603:1030:403:3::4e2,2603:1030:403:5::23f,2603:1030:403:15::cb,2603:1030:403:7::114,2603:1030:403:17::168,2603:1030:403:6::25a,2603:1030:403:17::19b,2603:1030:403:5::241,2603:1030:403:3::dd7,2603:1030:403:3::4e6,2603:1030:40c:5::1f,2603:10e1:100:2::1477:8013","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-259","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"azd-env-name":"azdtest-d347996"},"resourceGroup":"rg-azdtest-d347996","defaultHostName":"app-yswqbm6bq4kx2-staging.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":"AppServiceAppLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"privateLinkIdentifiers":null,"sshEnabled":null},"identity":{"type":"SystemAssigned","tenantId":"70a036f6-8e4d-4615-bad6-149c02e7720d","principalId":"81c177a5-2906-4ed3-8a1d-acbf745c64f2"}}' headers: Cache-Control: - no-cache Content-Length: - - "9217" + - "8989" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:41:40 GMT + - Fri, 10 Apr 2026 16:35:29 GMT Etag: - - '"1DC917FD3EC6CF5"' + - 1DCC9053AB50435 Expires: - "-1" Pragma: @@ -2749,23 +11245,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 19cb5221-b876-4299-bbfe-116d33d9ebf3 + - 578cfd2a-2197-4e03-be31-5ffb9c5cee92 X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004140Z:5437d698-bffb-4eb2-857a-da52f949cb94 + - EASTUS2:20260410T163529Z:1f098e30-3e19-493d-b690-b30b21354a62 X-Msedge-Ref: - - 'Ref A: 0E962D6D808646A68EB4C2E3C299A885 Ref B: CO6AA3150220037 Ref C: 2026-01-30T00:41:40Z' + - 'Ref A: D71E091858D14F57B7CEEC24045E82B3 Ref B: SN4AA2022305021 Ref C: 2026-04-10T16:35:28Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 219.561925ms - - id: 39 + duration: 1.657282981s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2786,10 +11282,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources/v1.2.0 (go1.25.0; linux),azdev/0.0.0-dev.0 (Go go1.25.0; linux/amd64) + - azsdk-go-armresources/v1.2.0 (go1.26.1; darwin),azdev/0.0.0-dev.0 (Go go1.26.1; darwin/amd64) X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 - url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb168ee%27&api-version=2021-04-01 + - 10dfd0a870019edd7e768ff3a4be4548 + url: https://management.azure.com:443/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d347996%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2799,7 +11295,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-lb168ee","name":"rg-azdtest-lb168ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb168ee","DeleteAfter":"2026-01-30T01:30:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/4d042dc6-fe17-4698-a23f-ec6a8d1e98f4/resourceGroups/rg-azdtest-d347996","name":"rg-azdtest-d347996","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d347996","DeleteAfter":"2026-04-10T17:14:10Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2808,7 +11304,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 30 Jan 2026 00:41:40 GMT + - Fri, 10 Apr 2026 16:35:30 GMT Expires: - "-1" Pragma: @@ -2820,21 +11316,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a6b226394ece1fe8f3c3c78852221c57 + - 10dfd0a870019edd7e768ff3a4be4548 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "3749" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "249" X-Ms-Request-Id: - - 1292d46b-15c2-459c-bbc9-c457e4bca145 + - caf8f7da-b232-474c-a01c-250f27fe9d7a X-Ms-Routing-Request-Id: - - EASTUS2:20260130T004140Z:1292d46b-15c2-459c-bbc9-c457e4bca145 + - SOUTHCENTRALUS:20260410T163530Z:caf8f7da-b232-474c-a01c-250f27fe9d7a X-Msedge-Ref: - - 'Ref A: 56B84F1A48F7435887AE624840BA3E36 Ref B: CO6AA3150220037 Ref C: 2026-01-30T00:41:40Z' + - 'Ref A: A6BD1279706043B48E89C617EBA3A3B2 Ref B: SN4AA2022305021 Ref C: 2026-04-10T16:35:30Z' status: 200 OK code: 200 - duration: 125.393314ms - - id: 40 + duration: 637.975162ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2842,7 +11338,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre.azurewebsites.net + host: app-yswqbm6bq4kx2.azurewebsites.net remote_addr: "" request_uri: "" body: "" @@ -2854,7 +11350,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-34ois7zchicre.azurewebsites.net:443/ + url: https://app-yswqbm6bq4kx2.azurewebsites.net:443/ method: GET response: proto: HTTP/1.1 @@ -2875,16 +11371,16 @@ interactions: Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:41:41 GMT + - Fri, 10 Apr 2026 16:35:32 GMT Server: - gunicorn Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2.azurewebsites.net status: 200 OK code: 200 - duration: 753.845892ms - - id: 41 + duration: 1.637082798s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2892,7 +11388,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net + host: app-yswqbm6bq4kx2-staging.azurewebsites.net remote_addr: "" request_uri: "" body: "" @@ -2904,7 +11400,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ + url: https://app-yswqbm6bq4kx2-staging.azurewebsites.net:443/ method: GET response: proto: HTTP/1.1 @@ -2912,29 +11408,29 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 71 + content_length: 61 uncompressed: false body: | { - "message": "Hello from Azure App Service!", - "version": "1.0.0" + "message": "Updated deployment!", + "version": "2.0.0" } headers: Content-Length: - - "71" + - "61" Content-Type: - application/json Date: - - Fri, 30 Jan 2026 00:41:42 GMT + - Fri, 10 Apr 2026 16:39:06 GMT Server: - gunicorn Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net + - ARRAffinity=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;Secure;Domain=app-yswqbm6bq4kx2-staging.azurewebsites.net + - ARRAffinitySameSite=b42e8886acdb8a5a6fd64d57ead538cc2765d75cbbc61a37cab2678ae174bea0;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-yswqbm6bq4kx2-staging.azurewebsites.net status: 200 OK code: 200 - duration: 636.077328ms - - id: 42 + duration: 3m33.860380474s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2942,7 +11438,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net + host: aka.ms remote_addr: "" request_uri: "" body: "" @@ -2953,8 +11449,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://aka.ms:443/azd/extensions/registry method: GET response: proto: HTTP/1.1 @@ -2962,29 +11458,36 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 71 + content_length: 0 uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } + body: "" headers: + Cache-Control: + - max-age=0, no-cache, no-store + Connection: + - keep-alive Content-Length: - - "71" - Content-Type: - - application/json + - "0" Date: - - Fri, 30 Jan 2026 00:41:52 GMT + - Fri, 10 Apr 2026 16:39:06 GMT + Expires: + - Fri, 10 Apr 2026 16:39:06 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: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 156.636915ms - - id: 43 + - Kestrel + Strict-Transport-Security: + - max-age=31536000 ; includeSubDomains + X-Response-Cache-Status: + - "True" + status: 301 Moved Permanently + code: 301 + duration: 220.203686ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2992,7 +11495,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net + host: raw.githubusercontent.com remote_addr: "" request_uri: "" body: "" @@ -3002,488 +11505,4426 @@ interactions: - gzip Authorization: - SANITIZED + Referer: + - https://aka.ms/azd/extensions/registry User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ + - azsdk-go-azd-extensions/1.0.0 (go1.26.1; darwin) + url: https://raw.githubusercontent.com:443/Azure/azure-dev/refs/heads/main/cli/azd/extensions/registry.json method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 71 + content_length: 198422 uncompressed: false - body: | + body: |- { - "message": "Hello from Azure App Service!", - "version": "1.0.0" + "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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "context", + "description": "Displays the current `azd` project \u0026 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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 (Preview)", + "description": "Ship agents with Microsoft Foundry from your terminal. (Preview)", + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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": "\u003e1.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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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 \u003ccommand\u003e [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" + } + } + } + ] + }, + { + "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 \u003ccommand\u003e [options]", + "examples": [ + { + "name": "swap", + "description": "Swap deployment slots for an App Service.", + "usage": "azd appservice swap --service \u003cservice-name\u003e --src \u003csource-slot\u003e --dst \u003cdestination-slot\u003e" + } + ], + "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" + } + } + } + ] + } + ] } headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - max-age=300 Content-Length: - - "71" + - "198422" + Content-Security-Policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - - application/json + - text/plain; charset=utf-8 + Cross-Origin-Resource-Policy: + - cross-origin Date: - - Fri, 30 Jan 2026 00:42:02 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 306.565084ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:42:13 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 238.973544ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:42:23 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 116.568652ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:42:33 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 462.35808ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:42:43 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 325.490395ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:42:54 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 191.31823ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:43:04 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 188.692211ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:43:14 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 89.892076ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 71 - uncompressed: false - body: | - { - "message": "Hello from Azure App Service!", - "version": "1.0.0" - } - headers: - Content-Length: - - "71" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:43:24 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - status: 200 OK - code: 200 - duration: 106.639083ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: app-34ois7zchicre-staging.azurewebsites.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - Go-http-client/1.1 - url: https://app-34ois7zchicre-staging.azurewebsites.net:443/ - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 61 - uncompressed: false - body: | - { - "message": "Updated deployment!", - "version": "2.0.0" - } - headers: - Content-Length: - - "61" - Content-Type: - - application/json - Date: - - Fri, 30 Jan 2026 00:43:34 GMT - Server: - - gunicorn - Set-Cookie: - - ARRAffinity=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net - - ARRAffinitySameSite=7394f0e5216b0afbb461a38e3354dc7b562f137c3c859bfa9a02feb0b4185e26;Path=/;HttpOnly;SameSite=None;Secure;Domain=app-34ois7zchicre-staging.azurewebsites.net + - Fri, 10 Apr 2026 16:39:06 GMT + Etag: + - W/"9f5a0fdff6dcbcb461544d405aa6787769355ddf215e6aa09e4a71e48ff87e9c" + Expires: + - Fri, 10 Apr 2026 16:44:06 GMT + Source-Age: + - "226" + Strict-Transport-Security: + - max-age=31536000 + Vary: + - Authorization,Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - "1" + X-Content-Type-Options: + - nosniff + X-Fastly-Request-Id: + - bcbdc430b4c607493207b7fdd0b4ddaa900e033a + X-Frame-Options: + - deny + X-Github-Request-Id: + - 8BB4:3CAAF0:36AEEE:42F3A1:69D84D35 + X-Served-By: + - cache-pao-kpao1770031-PAO + X-Timer: + - S1775839147.653151,VS0,VE2 + X-Xss-Protection: + - 1; mode=block status: 200 OK code: 200 - duration: 73.298769ms + duration: 34.678111ms --- -env_name: azdtest-lb168ee -time: "1769733024" +env_name: azdtest-d347996 +time: "1775837621"